month_date

specifies the date in the header of the view

dateDatethe date which needs formatting

Example

scheduler.templates.month_date = function(date){
    var dateToStr_func = scheduler.date.date_to_str(scheduler.config.month_date);
    return  dateToStr_func(date);
};

Applicable views:Month View
See also
Back to top