FilterChanged: function(sender, args);
sender. Event source.
args. Event information:
String. String. Filter string.
Column. Number. Sorted column number.
The FilterChanged event occurs after filter is changed.
Executing the example requires the SimpleTreeList component with the Tree identifier (see Example of Creating the SimpleTreeList Component).
// Set event
Tree.FilterChanged.add( function(sender, args) {
console.log("FilterChanged event:");
console.log(args);
});
// Initialize event
Tree.setFilter("node", 0);
After executing the example the FilterChanged event is added.
See also: