TreeListView.NodeMouseOver

Syntax

NodeMouseOver: function(sender, args);

Parameters

sender. Event source.

args. Event information:

Description

The NodeMouseOver event occurs on moving mouse cursor to node.

Example

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

// Set event
Tree.NodeMouseOver.add( function(sender, args) {
  console.log("NodeMouseOver event:");
  console.log(args);
});

After executing the example the NodeMouseOver event is added.

See also:

TreeListView