specifies the date in the header of the Week Agenda view
start | Date | the start date of the view |
end | Date | the end date of the view |
Available only in PRO Edition
scheduler.templates.week_agenda_date = function(start, end){
return scheduler.templates.day_date(start)+" – "+
scheduler.templates.day_date(scheduler.date.add(end,-1,"day"));
};
The template requires the week_agenda plugin to be activated.
added in v6.0
Back to top