TreeListView.NodeMouseUp

Syntax

NodeMouseUp: function(sender, args);

Parameters

sender. Event source.

args. Event information:

Description

The NodeMouseUp event occurs on releasing mouse button on node.

Example

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:

TreeListView