DHTMLX Docs & Samples Explorer

onFilterStart Events

Event occurs when filtering was activated but before real filtering started;

Parameters:

  • array of indexes
  • array of filtering values

event is blockable - returning true from it will confirm filtering , any other value will block filtering.

        grid.attachEvent("onFilterStart", function(indexes,values){
               //any custom logic
        });