I'm using a pretty basic installation of the latest DayPilot and I'm not getting BackgroundColor to work in Internet Explorer 9.0.
It works fine in Chrome but not IE.
protected void DayPilotScheduler1_BeforeEventRender(object sender, BeforeEventRenderEventArgs e)
{
if (e.ResourceId == "0")
{
e.BackgroundImage = "";
e.BackgroundRepeat = "";
e.BackgroundColor = "ff0000"; //red
}
}
The CSS (green - standard) is shown instead.