specifies the CSS class of the background cell in the Day/Week views
scheduler.templates.time_slot_class=function(date){
if(date.getHours() < 7 || date.getHours() > 18){
return "custom_color";
}
};
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.
added in v7.0
Back to top