lightbox_header

specifies the lightbox's header

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.lightbox_header = function(start,end,ev){
    return scheduler.templates.event_header(ev.start_date,ev.end_date,ev) 
    + scheduler.templates.event_bar_text(ev.start_date,ev.end_date,ev);
};

Details

Note, if the lightbox_header template isn't specified, the date part of the header will be set according to the event_header template.

See also
Back to top