specifies the date in the first column of the view
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.map_time = function(start,end,ev){
if (ev._timed)
return this.day_date(ev.start_date, ev.end_date, ev) + " " +
this.event_date(start);
else
return scheduler.templates.day_date(start) + " – " +
scheduler.templates.day_date(end);
};
The template requires the map_view plugin to be activated.