davidolson Posted January 19, 2015 Share Posted January 19, 2015 How do disable searching in specific column like Action col Id--Username--Subject--Action | Do not search oTable = $('.datatable table').dataTable({ "bJQueryUI": false, "bAutoWidth": false, "sPaginationType": "full_numbers", "sDom": '<"datatable-header"fl><"datatable-scroll"t><"datatable-footer"ip>', "oLanguage": { "sSearch": "<span>Filter all:</span> _INPUT_", "sLengthMenu": "<span>Show entries:</span> _MENU_", "oPaginate": { "sFirst": "First", "sLast": "Last", "sNext": "Next", "sPrevious": "Previous" } }, "order": [], /* No initial order */ "aoColumnDefs": [{ "bSortable": false, "aTargets": ['nosort'] /* Colomn data not sortable. Use <th class="nosort"> */ }] }); Link to comment https://forums.phpfreaks.com/topic/294055-jquery-datatable-disable-searching-in-action-column/ Share on other sites More sharing options...
davidolson Posted January 19, 2015 Author Share Posted January 19, 2015 Just figured out oTable = $('.datatable table').dataTable({ "bJQueryUI": false, "bAutoWidth": false, "sPaginationType": "full_numbers", "sDom": '<"datatable-header"fl><"datatable-scroll"t><"datatable-footer"ip>', "oLanguage": { "sSearch": "<span>Filter all:</span> _INPUT_", "sLengthMenu": "<span>Show entries:</span> _MENU_", "oPaginate": { "sFirst": "First", "sLast": "Last", "sNext": "Next", "sPrevious": "Previous" } }, "order": [], /* No initial order */ "aoColumnDefs": [ { "bSortable": false, "aTargets": ['nosort'] }, /* Colomn data not sortable. Use <th class="nosort"> */ { "bSearchable": false, "aTargets": ['nosearch'] } /* Colomn data not searchable. Use <th class="nosearch"> */ ] }); Link to comment https://forums.phpfreaks.com/topic/294055-jquery-datatable-disable-searching-in-action-column/#findComment-1503381 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.