month_events_link

控制月视图单元格内“查看更多”链接的显示方式

dateDate对应月视图单元格的日期
countnumber该单元格中事件的总数

Example

// 默认实现
scheduler.templates.month_events_link = function(date, count){
    return "<a>View more("+count+" events)</a>";
};

Applicable views:月视图

Related samples

See also
返回顶部