TreeListView.NodeCellMouseOut

Syntax

NodeCellMouseOut: function(sender, args);

Parameters

sender. Event source.

args. Event information:

Description

The NodeCellMouseOut event occurs on moving mouse from node cell.

Example

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

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

After executing the example the NodeCellMouseOut event is added.

See also:

TreeListView