time_slot_class

specifies the CSS class of the background cell in the Day/Week views

Example

scheduler.templates.time_slot_class=function(date){
    if(date.getHours() < 7 || date.getHours() > 18){
        return "custom_color";  
    }
 
};

Details

The background of the Day/Week views consists of 30-minute blocks. The template can be used to add a custom CSS class to any background cell in the calendar.

See also
Change log

added in v7.0

Back to top