Check documentation for the latest version of dhtmlxSuite onFilterEnd DHTMLX Docs

onFilterEnd

fires when filtering is completed (filtering extension)

void onFilterEnd(array elements);
elementsarraya collection of filtering elements

Available only in PRO Edition

Example

grid.attachEvent("onFilterEnd", function(elements){
    //your code here
});

Back to top