I have implemented an advanced insert/edit form following the demo. My insert form comes up as expected however my Edit template never comes up. If I double click on an existing appointment or right click and do edit nothing happens. I've wired up both OnClientFormCreated and OnFormCreated I see both called on the insert but not on edit. Is there anything else I could debug to try and find out why the edit form won't display.
<telerik:RadScheduler ID="radSchedulerMain" Height="100%" runat="server" EnableExactTimeRendering="true" ShowAllDayRow="False" ShowHeader="true" ShowFooter="False" StartEditingInAdvancedForm="true" StartInsertingInAdvancedForm="true" OverflowBehavior="Expand" EnableDescriptionField="False" WorkDayStartTime="00:00" WorkDayEndTime="23:59" OnClientFormCreated="schedulerFormCreated2" SelectedView="WeekView" ShowFullTime="True" ProviderName="TestSchedulerDataProvider" MinutesPerRow="60" TimeLabelRowSpan="1" onappointmentspopulating="radSchedulerMain_AppointmentsPopulating" OnAppointmentUpdate="radSchedulerMain_AppointmentUpdate" OnAppointmentInsert="radSchedulerMain_AppointmentInsert" OnAppointmentDelete="radSchedulerMain_AppointmentDelete" OnFormCreated="radSchedulerMain_FormCreated" OnNavigationComplete="radSchedulerMain_NavigationComplete" > <AdvancedForm Modal="True"></AdvancedForm> <TimelineView UserSelectable="false" /> <DayView EnableExactTimeRendering="true" /> <WeekView EnableExactTimeRendering="true" /> <MonthView ReadOnly="True" /> <AppointmentContextMenuSettings EnableDefault="true"></AppointmentContextMenuSettings> <TimeSlotContextMenus> <telerik:RadSchedulerContextMenu ID="schedulerMainTimeSlotContextMenu" runat="server"> <Items> <telerik:RadMenuItem Text="New Schedule Segment" Value="CommandAddAppointment" /> </Items> </telerik:RadSchedulerContextMenu> </TimeSlotContextMenus> <Localization AdvancedEditAppointment="Edit Schedule Segment" AdvancedNewAppointment="New Schedule Segment" /> <AppointmentTemplate> <div> <%#Eval("Subject")%> <%#Eval("Description")%> </div> </AppointmentTemplate> <AdvancedEditTemplate> <scheduler:AdvancedForm runat="server" ID="AdvancedEditForm1" Mode="Edit" Start='<%# Bind("Start") %>' End='<%# Bind("End") %>' /> </AdvancedEditTemplate> <AdvancedInsertTemplate> <scheduler:AdvancedForm runat="server" ID="AdvancedInsertForm1" Mode="Insert" Start='<%# Bind("Start") %>' End='<%# Bind("End") %>' /> </AdvancedInsertTemplate></telerik:RadScheduler>