NodeMouseOut: function(sender, args);
sender. Event source.
args. Event information:
Node. String. Node key.
The NodeMouseOut event occurs on moving mouse cursor from node.
Executing the example requires the SimpleTreeList component with the Tree identifier (see Example of Creating the SimpleTreeList Component).
// Set event
Tree.NodeMouseOut.add( function(sender, args) {
console.log("NodeMouseOut event:");
console.log(args);
});
// Initialize event by node mouseover
After executing the example the NodeMouseOut event is added.
See also: