week_date

specifies the date in the header of the view

startDatethe start date of the view
endDatethe end date of the view

Example

scheduler.templates.week_date = function(start, end){
    return scheduler.templates.day_date(start)+" – "+
    scheduler.templates.day_date(scheduler.date.add(end,-1,"day"));
};

Applicable views:Week View, Week Agenda View
See also
Back to top