Search
13944 results 911-920
Forum
- 8th Mar 2018Regex in column search not workingscript is handling that search request. My PHP isn't
- 7th Mar 2018How can i search for text in parent and child nodes in tree structure table?You can use the below to search all tables on the page: $('table.dataTable').DataTable().search( 'search text' ).draw(); Kevin
- 7th Mar 2018How can I use the < sign in a search?in a table, the search does work event when
- 3rd Mar 2018search each columnsAre you also loading jquery.dataTables.js? If you can't provide a test case at least post your JS code showing the Datatables init code and the code for the search boxes. Kevin
- 2nd Mar 2018Search in set of columsThanks, Kevin. I solved it this way: $('#myInputTextField').keyup(function(){ var searchTerm = this.value.toLowerCase(); $.fn.dataTable.ext.search.push(function(settings, data, dataIndex) { //search only in the following columns (0 and 1) with OR operator if (~data[0].toLowerCase().indexOf(searchTerm)) return true; if (~data[1].toLowerCase().indexOf(searchTerm)) return true; return false; }) table.draw(); $.fn.dataTable.ext.search.pop(); })
- 21st Feb 2018Can't make search function workAge: 8 Is the search not working as you
- 20th Feb 2018Search api for word NOT in cellI understand, the search that performs a global
- 20th Feb 2018i want individual column search by select input exact on coloumn name not in top or bottom of tablthe column select input search example with two changes
- 19th Feb 2018jquery selector statement for search boxThis example creates a custom search event from the default search input: $('.dataTables_filter input') .off() .on('keyup', function() { $('#example').DataTable().search(this.value, false, false).draw(); }); Kevin
- 16th Feb 2018DataTable Search Doesnot workNot at this time sorry. Ordering does have that ability, but not yet for search. Allan