TreeListView.NodeDblClick

Syntax

NodeDblClick: function(sender, args);

Parameters

sender. Event source.

args. Event information:

Description

The NodeDblClick event occurs on node double click.

Example

Executing the example requires the SimpleTreeList component with the Tree identifier (see Example of Creating the SimpleTreeList Component).

// Set event
Tree.NodeDblClick.add( function(sender, args) {
  console.log("NodeDblClick event:");
  console.log(args);
});
// Initialize event by node double click.

After executing the example the NodeDblClick event is added.

See also:

TreeListView