Can't seem to get the OnBeforeEventRender to fire for the Daypilot Month. No errors, just doesn't seem to get called.
I did set the OnBeforeEventRender="DayPilotMonth1_BeforeEventRender"
and have the code:
protected void DayPilotMonth1_BeforeEventRender(object sender, DayPilot.Web.Ui.Events.BeforeEventRenderEventArgs e)
{
Response.Write("SOMETHIN");
}
Answer posted by Dan Letecky [DayPilot] 14 years ago.
The event handler is invoked correctly but this call will not do anything, Response.Write() is not allowed there. You can check it by modifying the event:
e.InnerHTML = "test";
e.BackgroundColor = "red";
Comment posted by SolzIT 13 years ago.
e.e.BackgroundColor is not taking affect. My code is: