tooltip_text

设置在tooltip中显示的文本

startDate事件开始的日期
endDate事件结束的日期
eventobject事件对象本身

Example

scheduler.templates.tooltip_text = function(start,end,ev){
    return "<b>Event:</b> "+ev.text+"<br/><b>Start date:</b> " + 
    scheduler.templates.tooltip_date_format(start)+ 
    "<br/><b>End date:</b> "+scheduler.templates.tooltip_date_format(end);
};

Applicable views:议程视图, 日视图, 地图视图, 月视图, 周视图, 周议程视图, Units 视图
Details

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

See also
返回顶部