Found: function(sender, args);
sender. Event source.
args. Event information:
Node. String. Found node key.
String. String. Filter string.
Column. Number. Sorted column number.
SetFocus. Boolean. Focus found node.
The Found event occurs after applying search.
Executing the example requires the SimpleTreeList component with the Tree identifier (see Example of Creating the SimpleTreeList Component).
// Set event
Tree.Found.add( function(sender, args) {
console.log("Found event:");
console.log(args);
});
// Initialize event
Tree.find("node", 0, true);
After executing the example the Found event is added.
See also: