tooltip_text

specifies the text of tooltips

startDatethe date when an event is scheduled to begin
endDatethe date when an event is scheduled to be completed
eventobjectthe event object

Example

scheduler.templates.tooltip_text = function(start,end,ev){
    return "<b>Event:</b> "+ev.text+"<br/><b>Start date:</b> " + 
    scheduler.templates.tooltip_date_format(start)+ 
    "<br/><b>End date:</b> "+scheduler.templates.tooltip_date_format(end);
};

Applicable views:Agenda View, Day View, Map View, Month View, Week View, Week Agenda View, Units View
Details

The template requires the tooltip plugin to be enabled.

See also
Back to top