day_scale_date

specifies the date in the sub-header of the Day view

dateDatethe date which needs formatting

Example

const formatDayScale = scheduler.date.date_to_str("%j %M %Y");
 
scheduler.templates.day_scale_date = function(date){
    return formatDayScale(date);
};

Applicable views:Day View
See also
Back to top