{gridName}_date

设置视图头部显示的日期

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

Available only in PRO Edition

Example

//默认定义
scheduler.templates.grid_date = function(start, end){
    return scheduler.templates.day_date(start)
    + " - "
    + scheduler.templates.day_date(end);
};

Applicable views:Grid 视图
Details

该模板仅在启用grid_view插件时生效。

See also
返回顶部