I am trying to show a RadScheduler in an XmlHttpPanel and it is not displaying the appointments. I call DataBind after the DataSource is set. If I add a call to rebind I get a partial view of the appointments but its just the outline. I tried setting RegisterWithScriptManager=False and I then get javascript errors.
<telerik:RadXmlHttpPanel ID="radXmlHttpPanel" runat="server" OnServiceRequest="radXmlHttpPanel_OnServiceRequest" RenderMode="Block" EnableClientScriptEvaluation="true" LoadingPanelID="loadingPanelSupervisorHome" > <div id="listEmployeeCoverages" runat="server"> <div id="employeeCoveragesSchedule"> <telerik:RadScheduler ID="schedulerEmployeeCoverage" runat="server" SelectedView="TimelineView" ReadOnly="True" OverflowBehavior="Expand" OnNavigationComplete="schedulerEmployeeCoverage_OnNavigationComplete" OnNavigationCommand="schedulerEmployeeCoverage_OnNavigationCommand" OnAppointmentDataBound="schedulerEmployeeCoverage_OnAppointmentDataBound" DataKeyField="Detail.Key" DataSubjectField="Subject" DataStartField="Detail.StartDateTime" DataEndField="Detail.StopDateTime"> <TimelineView UserSelectable="False" GroupBy="Employee" GroupingDirection="Vertical" ShowInsertArea="False" SlotDuration="01:00:00" ShowDateHeaders="true" ColumnHeaderDateFormat="htt"></TimelineView> <DayView UserSelectable="False"></DayView> <WeekView UserSelectable="False"></WeekView> <MonthView UserSelectable="False"></MonthView> </telerik:RadScheduler> </div> </div> </telerik:RadXmlHttpPanel>