Hey all I have a page with a bunch of accordion panels with controls in them, what I need is when they submit a form on one control I need the radgrid on a different control to refresh how do I do this?
thanks!
Panels:
thanks!
Panels:
<div> <h3> <a href="#">Create Groups</a></h3> <div> <asp:UpdatePanel ID="UpdatePanelCreateGroups" runat="server" UpdateMode="Conditional"> <ContentTemplate> <div> <oti:CreateGroup ID="CreateGroup" runat="server" /> </div> </ContentTemplate> </asp:UpdatePanel> </div> </div> <div> <h3> <a href="#">Edit Questions</a></h3> <div> <asp:UpdatePanel ID="UpdatePanelEditQuestions" runat="server" UpdateMode="Conditional"> <ContentTemplate> <div> <oti:EditQuestionsGroup ID="EditQuestionsGroup" runat="server" /> </div> </ContentTemplate> </asp:UpdatePanel> </div> </div> <div> <h3> <a href="#">Edit Group Questions</a></h3> <div> <asp:UpdatePanel ID="UpdatePanelEditGroupQuestions" runat="server" UpdateMode="Conditional"> <ContentTemplate> <div> <oti:EditGroup ID="EditGroup" runat="server" /> </div> </ContentTemplate> </asp:UpdatePanel> </div> </div>