month_events_link

specifies the presentation of the 'View more' link in a cell of the Month view

dateDatethe date of a month cell
countnumberthe number of events in the cell

Example

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

Applicable views:Month View

Related samples

See also
Back to top