Hi
I have a problem when add a marked day, on this case, Sundays.
I have a mini calendar outside scheduler and when i do this:
scheduler.addMarkedTimespan({
days: 0,
zones: ‘fullday’,
css: “pink_section”
});
css:
.pink_section {
background-color: #6a36a5;
opacity: 0.30;
filter:alpha(opacity=30);
}
it paints Sundays on scheduler but also paint on mini calendar in a strange way.
i use to mark Sundays on mini calendar with:
.dom_month .dhx_month_head{
background-color: #FFB8B8;
}
scheduler.templates.month_date_class=function(date,today){
if (date.getDay()==0)
return “dom_month”;
return “”;
};
when i call addMarkedTimespan, overwrites it.
what i do to mark Sundays in scheduler and mini calendar?
thank you