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