定义在 Week Agenda 视图头部显示的日期
start | Date | 视图的起始日期 |
end | Date | 视图的结束日期 |
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"));
};
该模板仅在启用 week_agenda 插件时生效。
在 v6.0 中添加
返回顶部