tooltip_date_format

定义在tooltip中开始和结束日期的显示格式

dateDate需要格式化的日期

Example

scheduler.templates.tooltip_date_format=function (date){
    var formatFunc = scheduler.date.date_to_str("%Y-%m-%d %H:%i");
    return formatFunc(date);
}

Details

该template仅在启用tooltip插件时生效。

See also
返回顶部