Using fnSetFilteringDelay with Multi-Column Searches

Using fnSetFilteringDelay with Multi-Column Searches

PaulFreemanPaulFreeman Posts: 1Questions: 0Answers: 0
edited September 2010 in Plug-ins
Hi,

As it is, fnSetFilteringDelay doesn't seem to have any effect on filtering triggered by multi-column inputs.

[code]
oTable.fnSetFilteringDelay(10000);
$("tfoot input").keyup( function ()
{
oTable.fnFilter( this.value, $("tfoot input").index(this) );
} );
[/code]

The global search box is delayed as expected, but inputs in the tfoot trigger without delay.

Is there an easy solution I'm missing? I've had a mooch around the forums, but can't seem to find anything useful.

Any help would be appreciated.

Many thanks in advance.
This discussion has been closed.