TreeListView.NodeCellMouseOver

Syntax

NodeCellMouseOver: function(sender, args);

Parameters

sender. Event source.

args. Event information:

Description

The NodeCellMouseOver event occurs on pointing node cell mouseover.

Example

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

// Set event
Tree.NodeCellMouseOver.add( function(sender, args) {
  console.log("NodeCellMouseOver event:");
  console.log(args);
});
// Initialize node mouseover event

After executing the example the NodeCellMouseOver event is added.

See also:

TreeListView