We are being forced by some of our integrated apps to update to .NET 4.5 and having a few issues with our DayPilot Calendars. We have a context menu that shows when you click on an event on the calendar. That postsback and one of the items does a Response.Redirect to another page. That Response.Redirect no longer works because our calendar is in an UpdatePanel.....
If we remove the updatepanel then other items do not work....any ideas?
Okay thanks, but we have an event scheduled for a client and have been allowing a 'Navigate to client page' in the menu so the id we need for the client is not the event id. I suppose we could grab the right client on that page from the event id, but I am just getting into this and I think there will be other places this will be an issue where that may not be so simple...
Comment posted by Dan Letecky [DayPilot] 10 years ago.
You can add the required data (client id) to event tags using DataTagFields="client_id" and access it using e.tag("client_id") in the menu item. The "client_id" field must be in the data source, of course.
Comment posted by Stephanie 10 years ago.
Thanks. I have not tried that yet as I am facing other issues in other places related to the Calendar controls and .NET 4.5 For instance I cannot call Response.Redirect in "protected void DayPilot1_EventClick(object sender, EventClickEventArgs e)".
An article I found says that you can add the control as a Trigger of the Update panel and that seems to work for regular button controls, etc. I was able to get that to work for the DayPilot control as well. So I think that may work.''
Thanks for the help
This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.