REQUEST: templates.event_class should apply to month view

hi,

I’ve been testing with the dhtmlxScheduler. I am very impressed…

I need to be able in influence the styling of an event in month view. I have found the undocumented feature ‘event._text_style’ to set styling, but this is not ideal, and requires double coding since it does not work well in day/week view…

Is there something I’m missing, or could I ask you to consider adding this in a future release…

Thank you!

Actually event_class template must work in all views.
It may confuse, that in different view, you need to have a bit different css rules

day|week

.my_class div{
background-color:red;
}

month
.dhx_cal_event_line.my_class{
background-color:red;
}

also in case of glossy skin, you need to set “background”, not “backround-color” property, to reset default background image.

worked like a charm!

Thanks!