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