≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
Problem fnSetFilteringDelay with Multiple Filters
Problem fnSetFilteringDelay with Multiple Filters
ITARulez
Posts: 10
Questions: 0
Answers: 0
January 2013
edited January 2013
in
General
hi guys,
I noticed that the function fnSetFilteringDelay work on only Global Search filter but not on Multiple Search Filter (single filter column) how i can solve this problem? i need delay on every filter
Thx a lot
Alex
Replies
ITARulez
Posts: 10
Questions: 0
Answers: 0
January 2013
this work:
[code]
$("thead input").keyup( function (e) {
if ( e.keyCode != 13 ) { return false; }
oTable.fnFilter( this.value, $("thead input").index(this) );
} );
[/code]
This discussion has been closed.
Replies
[code]
$("thead input").keyup( function (e) {
if ( e.keyCode != 13 ) { return false; }
oTable.fnFilter( this.value, $("thead input").index(this) );
} );
[/code]