Check documentation for the latest version of dhtmlxSuite onFilterStart DHTMLX Docs

onFilterStart

fires when filtering has been activated but before the real filtering started

boolean onFilterStart(array indexes,array values);
indexesarrayan array of indexes
valuesarrayan array of filtering values
booleanreturning true will confirm filtering

Available only in PRO Edition

Example

grid.attachEvent("onFilterStart", function(indexes,values){
    // your code here
    return true;
});

Details

The event is blockable. Returning false will block the default action.

Back to top