Search
11456 results 8921-8930
Forum
- 11th May 2016Male and Female FilteringIf you are using client-side processing, then you could use a regular expression (i.e. ^male) to match only "Male" when using column().search(). If you are using server-side processing then you need to do something similar in your server-side script (probably remove the leading wildcard). The next major version of DataTables will match the start of words only automatically (client-side processing). Allan
- 26th Jan 2016Is it possible to use custom filters with a datatable loaded from server-side?Ok, after some doing more search I found that this was dead easy... table .column( 4 ) .search( "libro" ) .draw(); Sorry for asking such a stupid question :S
- 15th Dec 2015How to add range filtering ability?Sorry nevered tried yadcf with worpdress, try googling it (I remember seeing yadcf mentioned with worpdress in the past)
- 8th Dec 2015How to reset all filters after filtering a column?Please help me. Thank you Jason :)
- 26th Nov 2015Column Filtering with Ajax Loaded tableYou'd need to add the footer using standard jQuery / DOM methods (not just an empty tfoot but the cells as well) - DataTables doesn't have an option to create footer elements at the moment. Allan
- 8th Nov 2015keyTable navigation does not work while filtering dataTables(if searching input is not empty)Hi Allan, I am just tried keytable new version. It is working perfectly now. I am sorry that I am too late to let you know. Thank you very much. Toki
- 15th Oct 2015unable to get filtering to workUpper/Lower case is not an artistic decision, you need to use the right one. :) The difference is described here, http://datatables.net/manual/api Compare your code to the example. http://datatables.net/examples/api/multi_filter.html
- 25th Feb 2015Dynamically adding data-search attributes during initialization to enable filtering or global searchI had the same issue and could eventually work it out, using the columns.render property. See https://datatables.net/reference/option/columns.render and especially the 2nd example there.
- 9th Dec 2014Filtering a select Boxthxxxxxx guys
- 1st Oct 2014Selects disappearing after filtering or sorting.Thanks tangerine, I figured out the issue. searching: false was definitely the first issue. The other was that I was using scrollx and still trying to append to my default table. Changing my second instance of #mytable on line 7 to .dataTables_scrollHead was the second thing that fixed my problem.