week_date

设置视图头部显示的日期

startDate视图的起始日期
endDate视图的结束日期

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:周视图, 周议程视图
See also
返回顶部