Its working now once I added the below code at onInit()
this.DayPilotCalendar1.BeforeEventRender += new BeforeEventRenderEventHandler(DayPilotCalendar1_BeforeEventRender);
Can you please explain that how to do for dynamic DayPilotCalendar objects?
Comment posted by Dan Letecky 19 years ago.
It should work if you do the same after the dynamic object creation:
DayPilotCalendar1.BeforeEventRender += new BeforeEventRenderEventHandler(DayPilotCalendar1_BeforeEventRender);
That doesn't work?
This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.