fnSetFilteringDelay plug-in - Incorporate individual column searches
fnSetFilteringDelay plug-in - Incorporate individual column searches
Has anyone using the fnSetFilteringDelay plug-in incorporated individual column search fields? I've been trying to apply a delay to individual column search fields without success. Hopefully this is an easy task and it's just my inexperience and/or something I've missed. If you've worked on this, let me know.
Thanks, Rob
http://datatables.net/plug-ins#api_fnSetFilteringDelay
http://datatables.net/examples/example_multi_filter.html
Thanks, Rob
http://datatables.net/plug-ins#api_fnSetFilteringDelay
http://datatables.net/examples/example_multi_filter.html
This discussion has been closed.
Replies
[code]
var anControl = $( 'div.dataTables_wrapper > table > tfoot > tr > th > input:text' );
[/code]
might help. Also, check line no. 35. Currently it is:
[code]
$$this.fnFilter( anControl.val() );
[/code]
So, fnFilter(param) searches in all columns. You should pass the column position index as a second parameter.