Hi all,
i've got a bit of a issue which i hope is a simple to fix.
I have a RadMenu and a asp:literal control
When i click a radmenu item it updates the literal control.
I've tried implementing Ajax and a loadingPanel, Everything works apart from the loading image.
The loading image is not displayed not matter what i do
here is a section of the code
Here is the Ajax part of the code
Here is the definition of the controls which are being updated
So clicking on a RadMenuTOC updates the LitContent and LitTitle but i never see a loading image
i've got a bit of a issue which i hope is a simple to fix.
I have a RadMenu and a asp:literal control
When i click a radmenu item it updates the literal control.
I've tried implementing Ajax and a loadingPanel, Everything works apart from the loading image.
The loading image is not displayed not matter what i do
here is a section of the code
Here is the Ajax part of the code
| <telerik:RadAjaxLoadingPanel |
| ID="RadAjaxLoadingPanel1" Runat="server" EnableEmbeddedSkins="false"> |
| <img alt="Loading..." src="loading3.gif" /> |
| </telerik:RadAjaxLoadingPanel> |
| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" |
| DefaultLoadingPanelID="RadAjaxLoadingPanel1"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="RadMenuTOC"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="LitTitle" LoadingPanelID="RadAjaxLoadingPanel1"/> |
| <telerik:AjaxUpdatedControl ControlID="LitContent" |
| LoadingPanelID="RadAjaxLoadingPanel1" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
Here is the definition of the controls which are being updated
| <div class="divtoc"> |
| <p>Table of Contents</p> |
| <p> </p> |
| <telerik:RadMenu ID="RadMenuTOC" Runat="server" Flow="Vertical" Skin="Black" |
| onitemclick="RadMenuTOC_ItemClick" > |
| <DefaultGroupSettings ExpandDirection="Right" /> |
| </telerik:RadMenu> |
| </div><!--end of toc--> |
| <div class="subcatmaincontent"> |
| <h2><asp:Literal ID="LitTitle" runat="server" Text=""></asp:Literal></h2> |
| <div class="test"> |
| <asp:Literal ID="LitContent" runat="server" Text=""></asp:Literal> |
| </div><!-- end test div--> |
| </div><!--end of main content--> |
So clicking on a RadMenuTOC updates the LitContent and LitTitle but i never see a loading image
