Hello,
I'm trying to implement the method BeforeEventRender and I have an issue :
Compiler Error Message: CS0123: No overload for 'DayPilotScheduler1_BeforeEventRender' matches delegate 'BeforeEventRenderEventHandler'
My c# :
protected void DayPilotScheduler1_BeforeEventRender(object sender, BeforeEventRenderEventArgs e)
{
e.BackgroundColor = (string)e.DataItem["color"];
}
my webform :
OnBeforeEventRender="DayPilotScheduler1_BeforeEventRender"
I think that I have to use something else than "OnBeforeEventRender", but if yes, what ? :s
Thank you guys.
Dario