month_day

specifies the format of the day in a cell

dateDatethe date which needs formatting

Example

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

Applicable views:Month View, Year View
See also
Back to top