|
|
@ -29,25 +29,28 @@ jQuery.fn.dataTableExt.oApi.fnSetFilteringDelay = function ( oSettings, iDelay )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
this.each( function ( i ) {
|
|
|
|
this.each( function ( i ) {
|
|
|
|
$.fn.dataTableExt.iApiIndex = i;
|
|
|
|
if ( typeof _that.fnSettings().aanFeatures.f !== 'undefined' )
|
|
|
|
var
|
|
|
|
{
|
|
|
|
oTimerId = null,
|
|
|
|
$.fn.dataTableExt.iApiIndex = i;
|
|
|
|
sPreviousSearch = null,
|
|
|
|
var
|
|
|
|
anControl = $( 'input', _that.fnSettings().aanFeatures.f );
|
|
|
|
oTimerId = null,
|
|
|
|
|
|
|
|
sPreviousSearch = null,
|
|
|
|
anControl.unbind( 'keyup search input' ).bind( 'keyup search input', function() {
|
|
|
|
anControl = $( 'input', _that.fnSettings().aanFeatures.f );
|
|
|
|
|
|
|
|
|
|
|
|
if (sPreviousSearch === null || sPreviousSearch != anControl.val()) {
|
|
|
|
anControl.unbind( 'keyup search input' ).bind( 'keyup search input', function() {
|
|
|
|
window.clearTimeout(oTimerId);
|
|
|
|
|
|
|
|
sPreviousSearch = anControl.val();
|
|
|
|
if (sPreviousSearch === null || sPreviousSearch != anControl.val()) {
|
|
|
|
oTimerId = window.setTimeout(function() {
|
|
|
|
window.clearTimeout(oTimerId);
|
|
|
|
$.fn.dataTableExt.iApiIndex = i;
|
|
|
|
sPreviousSearch = anControl.val();
|
|
|
|
_that.fnFilter( anControl.val() );
|
|
|
|
oTimerId = window.setTimeout(function() {
|
|
|
|
}, iDelay);
|
|
|
|
$.fn.dataTableExt.iApiIndex = i;
|
|
|
|
}
|
|
|
|
_that.fnFilter( anControl.val() );
|
|
|
|
});
|
|
|
|
}, iDelay);
|
|
|
|
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return this;
|
|
|
|
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
return this;
|
|
|
|
return this;
|
|
|
|
};
|
|
|
|
};
|
|
|
|