I am having trouble with the Update method of the the DayPilotMonth control. I am calling the javascript refreshCallBack and the timeRangeSelectedCallBack functions and these call the following code behind functions:
Protected Sub DayPilotMonth1_Refresh(ByVal sender As Object, ByVal e AsDayPilot.Web.Ui.Events.RefreshEventArgs) Handles DayPilotMonth1.Refresh
DayPilotMonth1.StartDate = Me.CurrentDate
DayPilotMonth1.Update()
End Sub
Protected Sub DayPilotMonth1_TimeRangeSelected(ByVal sender As Object, ByVal e As DayPilot.Web.Ui.Events.TimeRangeSelectedEventArgs) Handles DayPilotMonth1.TimeRangeSelected
Me.CurrentDate = e.Start
DayPilotMonth1.Update()
End Sub
The control does not refresh in either case. I have event handlers on the BeforeCellRender and BeforeHeaderRender events, and these are not being called. I have also tried doing a direct callback rather than the javascript call, and the update does not work in this case either. The page also has a Calendar and a Scheduler on it and both of these controls update properly. Have I run into a bug or do I need to set a property to make the update work.
Thanks