Search
11316 results 471-480
Forum
- 15th Aug 2013filter sub select drop down menu by main oneproblem that when you filter the town_id field, that
- 9th Aug 2013SscrollY and Column Custom Filterlooks like the column filter plug-in has a number
- 8th Aug 2013Multi Filter and ColVis problem after showing hidden columnsnot working http://tinypic.com/view.php?pic=2h72g09&s=5 here u can see that recovery column is set visible and the filter is going right and defense are a hidden column and the filter is not going
- 26th Jul 2013using $.fn.dataTableExt.afnFiltering.push to filter tables[code] $.fn.dataTableExt.afnFiltering.push( function( settings, aData, iDataIndex ) { if ( settings.nTable.id === 'example' ) { // filter example } else { // ... } } ); [/code]
- 21st Jul 2013filter only works after sortSolved it by doing initial sort expressively on the column that the filter didn't work on until it was filtered - changed line 120 in above example to: [code] oTable.fnSort( [ [6,'asc'] ] );[/code]
- 10th Jul 2013General Filter customization[quote]Put your custom filter in place using standard DOM / jQuery techniques and then use fnFilter ( http://datatables.net/api#fnFilter ) to apply the filter to DataTables.[/quote] http://www.datatables.net/forums/discussion/6180/howto-add-custom-search-field/p1
- 5th Jun 2013JQuery DataTable Column Filter - External Form - pre-selected filterdefault setting of the filter, that means an empty
- 29th Apr 2013Default Filter is wrong?Just upgraded the script to DataTables 1.9.4, and I still see the same problem. Can someone confirm that this is how it should work? How can I fix this behaviour, if I filter on "P 1" it shouldn't return "P10".
- 20th Apr 2013Column Filter plug-in doesn't work after recreating DatatableSounds like an issue with the column filter plug-in. I'd suggest filing a bug report for that project. Allan
- 17th Apr 2013Make datatables refresh with filter from link/input boxIf you want to filter the table you can use fnFilter - or if you want to change the data source for the table you can use fnServerParams to send a different parameter, indicating the category, to the server-processing script. Allan