Search
13814 results 891-900
Forum
- 14th Mar 2018Regex search: if any word is starting with the given search input streamI am asking for word boundary search regex which I know is \bword\b but this ignores all the special characters
- 14th Mar 2018Column Searchquery->where( $this->_ssp_field( $http, $i ), '%'.$search.'%', 'like' ); to be: $query->where(
- 14th Mar 2018Custom filtering - range search not working because of £ signsYou'd need to strip the £ symbol before converting the string to a number in the search function value.replace('£', '') should do that. Allan
- 12th Mar 2018How to display a warning if a filter (search) is applied by Yadcf?I uses for the search is no more more
- 9th Mar 2018Get filter / search value on page loadcurrent state of the searches for the table and
- 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(); })