Finding: function(sender, args);
sender. Event source.
args. Event information:
String. String. Search string.
Column. Number. Sorted column number.
SetFocus. Boolean. Focus found node.
Cancel. Boolean. If this property is set to true in the event handler, search is not executed.
The Finding event occurs before applying search.
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: