Search
13991 results 1061-1070
Forum
- 16th Feb 2017One Search button for two categoriestable = $('#sites').DataTable(); table.columns( 1 ).search( "" ).draw(); table.button( 5 ).active(
- 13th Feb 2017How can data tables search bar only return distinct values?You can use a regular expression search like this example. Turn on regex and turn of smart search. You can use the word boundary \b to search for whole words. Kevin
- 8th Feb 2017Recalculate a column after search inputPossibly the drawCallback may work for you. In the callback you can write your function to recalculate the column total after every search. Kevin
- 6th Feb 2017Custom Search Optionvalues, like the regular search behaviour but adding the
- 31st Jan 2017search() for all matches to either one of two values?quite enough info on search() for me to see
- 6th Jan 2017Server Side Processing - multiple word searchto build up the search pattern (probably in PHP),
- 6th Jan 2017Set focus to the Search Boxval = $.fn.dataTable.util.escapeRegex( $(this).val() ); column .search( val ? '^'+val+'$' : '', true, false
- 6th Jan 2017Can I move the search box to the left?this class to datatable search div using jquery or
- 3rd Jan 2017Search in column with values without string?use different data for search, sort and display. It
- 29th Dec 2016How to Disable sorting when no records are fetched either by server-side processing or search?Allan, I have same request, where there is no record returned in json data, user still has option to play with pagination, search and sorting. Is it possible to hide those features from user? Thanks, Samir