year_tooltip

specifies the tooltip over a day cell containing some scheduled event(s)

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.year_tooltip = function(start,end,ev){
    return ev.text;
};

Applicable views:Year View
Details

The template requires the year_view plugin to be activated.

See also
Back to top