Full Day Event Color

For my events, I generate colors (text and bg) like this and it works great:

[code]dp.attachEvent(“onAfterUpdate”, function(sid, action, tid, tag){
scheduler.getEvent(tid).color = tag.getAttribute(“color”);
scheduler.getEvent(tid).textColor = tag.getAttribute(“textColor”);
scheduler.getEvent(tid).Patient = tag.getAttribute(“Patient”);
scheduler.updateEvent(tid);

return true;
});[/code]

However, it doesn’t apply to full day events. The textColor DOES update, but not the full day background color. It always stays the same default color.

Any ideas?

Try to

a) change skin to default ( problem occurs only for glossy skin )
b) update scheduler to version 3.5 where issue was fixed