tooltip_date_format

specifies the format of start and end dates displayed in the tooltip

dateDatethe date which needs formatting

Example

scheduler.templates.tooltip_date_format=function (date){
    var formatFunc = scheduler.date.date_to_str("%Y-%m-%d %H:%i");
    return formatFunc(date);
}

Details

The template requires the tooltip plugin to be enabled.

See also
Back to top