specifies the format of dates in columns with id='date'
start | Date | the date when an event is scheduled to begin |
end | Date | the date when an event is scheduled to be completed |
ev | object | the event object |
Available only in PRO Edition
scheduler.templates.grid_full_date = function(start,end,event){
if (scheduler.isOneDayEvent(event))
return scheduler.templates.grid_single_date(start);
else
return scheduler.templates.day_date(start)+" – "
+scheduler.templates.day_date(end);
};
The template requires the grid_view plugin to be activated.