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