I am using the default context menus that show Edit and Delete when you right click on an event. All works fine except when you click Edit or Delete, nothing happens. No postback, nothing. However, if I load the calendar and switch views clicking on either the Day, Week or Month, even if clicking the same view we are currently on, then doing a right click on an event works fine. Thoughts? What am I not setting on page load that gets set when clicking one of the view buttons?
My binding on page load is:
RadScheduler1.SelectedDate = DateTime.Now;
RadScheduler1.SelectedView = SchedulerViewType.MonthView;
RadScheduler1.DataSource = GetCalendarEvents(); // loads my list .. List<Telerik.Web.UI.Appointment>