TreeListView.NodeMouseDown

Syntax

NodeMouseDown: function(sender, args);

Parameters

sender. Event source.

args. Event information:

Description

The NodeMouseDown event occurs on clicking a 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.NodeMouseDown.add( function(sender, args) {
  console.log("NodeMouseDown event:");
  console.log(args);
});
// Initialize event by clicking any part of node

After executing the example the NodeMouseDown event is added.

See also:

TreeListView