Is there a way to catch changes in search box instead of .keyup() event, which allows filtering when text is copy-pasted, or for example, a date selected from a date selector ?
You can use fnDrawCallback to find when the table is redrawn, and there is a settings property (this.fnSettings().bFiltered) which indicates if the filter has been updated. For example:
[code]
"fnDrawCallback": function ( oSettings ) {
if ( oSettings.bFiltered ) {
...
}
},
[/code]
Allan
Replies
[code]
"fnDrawCallback": function ( oSettings ) {
if ( oSettings.bFiltered ) {
...
}
},
[/code]
Allan