hello,
i am using a MasterPage that has a RadAjaxLoadingPanel under the ContentPlaceHolder. normally this is cool and it works w/ various WebContentForm's RadAjaxPanels that refer to this RadAjaxLoadingPanel by ID.
however, the RadAjaxLoadingPanel doesnt seem to work for the UserControls managed via a RadAjaxManager.
for ex, i use a RadAjaxManager to manage two UserControls (which themselves contain RadGrids, etc) and a Button on a WebContentForm. instead of showing up, the animation is nowhere to be found. this is problematic for long operations.
what could cause a RadAjaxLoadingPanel not to work in somecases, when it works fine in others?
here's where it doesnt show up:
thanks!
matt
i am using a MasterPage that has a RadAjaxLoadingPanel under the ContentPlaceHolder. normally this is cool and it works w/ various WebContentForm's RadAjaxPanels that refer to this RadAjaxLoadingPanel by ID.
however, the RadAjaxLoadingPanel doesnt seem to work for the UserControls managed via a RadAjaxManager.
for ex, i use a RadAjaxManager to manage two UserControls (which themselves contain RadGrids, etc) and a Button on a WebContentForm. instead of showing up, the animation is nowhere to be found. this is problematic for long operations.
what could cause a RadAjaxLoadingPanel not to work in somecases, when it works fine in others?
here's where it doesnt show up:
| <asp:Content ID="Content1" ContentPlaceHolderID="phContent" runat="server"> |
| <h1>User Manager</h1> |
| <Foo:RolesManager ID="ucRolesManager" runat="server" visible="true"/> |
| <p><b>Add Users</b></p> |
| <Foo:AdUserSearch ID="ucAdUserSearch" runat="server" visible="true"/><br /> |
| <asp:Button ID="btnAddUsers" Text="Add Users to Role" OnClick="btnAddUsers_Click" Visible="false" runat="server" /> |
| <!-- AJAX MANAGER - "ajaxLoadingPanel" is from MasterPage --> |
| <Telerik:RadAjaxManager ID="radAjaxManager" runat="server"> |
| <AjaxSettings> |
| <%-- RolesManager updates itself --%> |
| <Telerik:AjaxSetting AjaxControlID="ucRolesManager"> |
| <UpdatedControls> |
| <Telerik:AjaxUpdatedControl ControlID="ucRolesManager" LoadingPanelID="ajaxLoadingPanel" /> |
| </UpdatedControls> |
| </Telerik:AjaxSetting> |
| <%-- UserSearch updates itself and add-user-button --%> |
| <Telerik:AjaxSetting AjaxControlID="ucAdUserSearch"> |
| <UpdatedControls> |
| <Telerik:AjaxUpdatedControl ControlID="ucAdUserSearch" LoadingPanelID="ajaxLoadingPanel" /> |
| <Telerik:AjaxUpdatedControl ControlID="btnAddUsers" LoadingPanelID="ajaxLoadingPanel" /> |
| </UpdatedControls> |
| </Telerik:AjaxSetting> |
| <%-- AddUsers Button updates RolesManager, UserSearch --%> |
| <Telerik:AjaxSetting AjaxControlID="btnAddUsers"> |
| <UpdatedControls> |
| <Telerik:AjaxUpdatedControl ControlID="ucRolesManager" LoadingPanelID="ajaxLoadingPanel" /> |
| <Telerik:AjaxUpdatedControl ControlID="ucAdUserSearch" LoadingPanelID="ajaxLoadingPanel" /> |
| </UpdatedControls> |
| </Telerik:AjaxSetting> |
| </AjaxSettings> |
| </Telerik:RadAjaxManager> |
| </asp:Content> |
thanks!
matt