Search
11331 results 1951-1960
Forum
- 25th Feb 2016Filter with a date picker?Not my tutorial, but I learned from it as well :-)
- 1st Jan 2016How to disable table search filtercould you please be specific. or provide a screenshot.
- 5th Nov 2015Keytable not working with search filterI hope tomorrow, but it might slip into next week. Allan
- 28th Oct 2015Filter on Enter keypressBTW - Using 1.10
- 21st Sep 2015Data-Search and Multi Filter SelectAny pointers?
- 17th Jun 2015Individual column search: mix free text filter with select filteringyou can use my yadcf plugin for datatables, its has lots of different filters types and you can different type for any column, see showcase
- 12th Jun 2015How do I create a filter to only show rows containing a checkboxFixed it! The data-search attribute needs to be on the not the tag, and needs to be on EVERY row: <!-- Valid Row --> <td class="enter" data-search="valid"> <input id="Enter_30241_3340138" type="checkbox" value="true" name="Enter_30241_3340138"></input> </td> <!-- Invalid Row --> <td class="enter" data-search=""> <input id="Enter_30241_3340138" type="checkbox" value="true" name="Enter_30241_3340138"></input> </td>
- 26th May 2015Search in rows already hidden by filterThe part that slows down the every function is that it creates a new API instance for each call - with the data and context appropriately set for the row in question. Indexes would be faster (looping over rows().indexes(), but you would still need to use the API to modify the data. It is possible that will be faster since there is less context switching. If you try it, I would be interested to know the result! Allan
- 29th Apr 2015A tweak to the date range filter using moment.jsVery nice - thanks for sharing with us! Allan
- 24th Mar 2015search (filter) with a double quote in the stringThanks Allan. I did try changing the search settings, but I found it less useful than the default. If it becomes a real issue, I will replace the " with in. or something like that ;-|