TreeListBase.FilterChanged

Syntax

FilterChanged: function(sender, args);

Parameters

sender. Event source.

args. Event information:

Description

The FilterChanged event occurs after filter is changed.

Example

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:

TreeListBase