TreeListView.ToolTipShowing

Syntax

ToolTipShowing: function(sender, args);

Parameters

sender. Event source.

args. Event information:

Description

The ToolTipShowing event occurs on displaying a tooltip.

Example

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

// Set event
Tree.ToolTipShowing.add( function(sender, args) {
  console.log("ToolTipShowing event:");
  console.log(args);
});
// Initialize event by node mouseover to display tooltip

After executing the example the ToolTipShowing event is added.

See also:

TreeListView