specifies the text of tooltips
start | Date | the date when an event is scheduled to begin |
end | Date | the date when an event is scheduled to be completed |
event | object | the event object |
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);
};
The template requires the tooltip plugin to be enabled.