Has anyone struck this? I have a ASP WebForm project with C# in the backend.
Even through I refresh the control as below and as per the Tutorial its not refreshing and showing new events. Drag and resize work fine with existing events.
The only way to get new events to show is to use the Browser Refresh (F5) and reload the page. Even calling Response.redirect from code in behind won't reload the Calendar correctly.
I am refreshing the control with (The prismRespository is a interface class for a SQL database)
DayPilotCalendarWeek.DataSource = prismRepository.GetResourceBookedTech(Monday, EndDate, UserId);
DayPilotCalendarWeek.DataBind();
DayPilotCalendarWeek.Update();
Any clues greatly appreciated.