Problem fnSetFilteringDelay with Multiple Filters

Problem fnSetFilteringDelay with Multiple Filters

ITARulezITARulez Posts: 10Questions: 0Answers: 0
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

  • ITARulezITARulez Posts: 10Questions: 0Answers: 0
    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.