TreeListBase.Finding

Syntax

Finding: function(sender, args);

Parameters

sender. Event source.

args. Event information:

Description

The Finding event occurs before applying search.

Example

Executing the example requires the SimpleTreeList component with the Tree identifier (see Example of Creating the SimpleTreeList Component).

// Set event
Tree.Finding.add( function(sender, args) {
  console.log("Finding event:");
  console.log(args);
});
// Initialize event
Tree.find("node", 0, true);

After executing the example the Finding event is added.

See also:

TreeListBase