fires before the tooltip is displayed for a data item (only with the 'tooltip' extension enabled)
id | string | the id of a data item that the tooltip will be shown for |
boolean | defines whether the default action of the event will be triggered (true) or canceled (false) |
scheduler.attachEvent("onBeforeTooltip", function (id){
//any custom logic here
return true;
});
The event is blockable. Return false and the tooltip won't be shown.
Back to top