I have a Web Form which contains a user control say x. User control x contains several instances of a single user control y.
y contains a loading panel in which a image is present for display on click of a particular button. Say i repeat user control y 3 or 4 times on the user control x.
The loading panel in my case contains the image that needs to be displayed on click of a button. So, when the form is loaded i would have 3 or 4 loading panels and also its corresponding 3 or 4 proxies.
<telerik:RadAjaxLoadingPanel height="30" width="100" isSticky="true" id="loadingPane" runat="server" style="position:absolute;">
<asp:Image id="loadingImg" runat="server" ImageUrl="/_layouts/images/factiva/loading.gif" AlternateText="Loading..." BorderWidth="0"></asp:Image>
</telerik:RadAjaxLoadingPanel>
<asp:Panel id="searchTreePanel" runat="server">
<telerik:RadTreeview id="rSTreeView" runat="server" EnableEmbeddedSkins="false" Skin="FactivaGray"></telerik:RadTreeview>
</asp:Panel>
<telerik:RadAjaxManagerProxy id="rAjaxManager" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="searchGo">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="searchTreePanel" LoadingPanelID="loadingPane" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManagerProxy>
The issue i am facing is that no matter i click any of the three or four searchGo buttons i get the same image loaded and not the different one.
Any help would be great.
y contains a loading panel in which a image is present for display on click of a particular button. Say i repeat user control y 3 or 4 times on the user control x.
The loading panel in my case contains the image that needs to be displayed on click of a button. So, when the form is loaded i would have 3 or 4 loading panels and also its corresponding 3 or 4 proxies.
<telerik:RadAjaxLoadingPanel height="30" width="100" isSticky="true" id="loadingPane" runat="server" style="position:absolute;">
<asp:Image id="loadingImg" runat="server" ImageUrl="/_layouts/images/factiva/loading.gif" AlternateText="Loading..." BorderWidth="0"></asp:Image>
</telerik:RadAjaxLoadingPanel>
<asp:Panel id="searchTreePanel" runat="server">
<telerik:RadTreeview id="rSTreeView" runat="server" EnableEmbeddedSkins="false" Skin="FactivaGray"></telerik:RadTreeview>
</asp:Panel>
<telerik:RadAjaxManagerProxy id="rAjaxManager" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="searchGo">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="searchTreePanel" LoadingPanelID="loadingPane" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManagerProxy>
The issue i am facing is that no matter i click any of the three or four searchGo buttons i get the same image loaded and not the different one.
Any help would be great.