Hello. I need colorize cell in month view depends on events in this day. Is there a proper way?
I found this function scheduler.templates.month_date_class (date, today), but there’s no events.
P.S. Sorry for my English.
Hello. I need colorize cell in month view depends on events in this day. Is there a proper way?
I found this function scheduler.templates.month_date_class (date, today), but there’s no events.
P.S. Sorry for my English.
The template provides you a date of the cell, then you can retrieve all events that happens on that day using
var evs = scheduler.getEvents(date, scheduler.date.add(date, 1, "day"));