specifies the date of the pop-up edit form
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.quick_info_date = function(start, end, ev){
if (scheduler.isOneDayEvent(ev)){
return scheduler.templates.day_date(start, end, ev) + " " +
scheduler.templates.event_header(start, end, ev);
}else{
return scheduler.templates.week_date(start, end, ev);
}
};
The template requires the quick_info plugin to be activated.