I have the following code below At the top of the page I have a collapsible
panel within the panel is an ASP Accordion with a total of 5 ASP Accordion
panes.
When it runs it does a post back on the whole page and binds the info to the
Rad Scheduler which is great.
But when I ajax the aspx page, first using ASP panels which didn't work
then using telerik:radAjaxPanels it stops binding the appointments data to
the Rad Scheduler which I can't work out.
So when I remove the panels it works but when I add the panels it stops
working.
I want each pane to post back then for the rad scheduler to post back,
instead of the whole page doing a post back of both controls.
Any Suggestions
Thanks - John M
<asp:Accordion>
<asp:AccordionPane ID="AccordionPane1" runat="server"">
<Content>
<telerik:RadAjaxPanel ID="PanelStaff" runat="server" LoadingPanelID="RadAjaxLoadingPanel2">
<asp:TextBox ID"StaffTextBox" runat="server"/>
<asp:Button ID="StaffSearchButton" runat="server"/>
</telerik:RadAjaxPanel>
</Content>
<asp:AccordionPane>
</asp:AccordionPane>
//I have 5 of these Accordion panes I want to have RadAjaxPanel in each Accordion pane.
<telerik RadScriptManager ID="Radscriptmanager1" runat="server">
<scripts>
</scripts>
</telerick:RadScriptManager>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadScheduler1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="PanelStaff" LoadingPanelID="RadAjaxLoadingPanel2" />
<telerik:AjaxUpdatedControl ControlID="RadScheduler1" LoadingPanelID="RadAjaxLoadingPanel1" />
<telerik:AjaxUpdatedControl ControlID="RadToolTipManager1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" LoadingPanelID="RadAjaxLoadingPanel1" HorizontalAlign="NotSet">
<telerik:RadScheduler ID="RadScheduler1" >
//Do Stuff
</telerik:RadScheduler>
</telerik:RadAjaxPanel>