ToolTipShowing: function(sender, args);
sender. Event source.
args. Event information:
Node. String. Node key.
Column. Number. Column index.
ToolTip. PP.Ui.ToolTip. Tooltip.
The ToolTipShowing event occurs on displaying a tooltip.
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: