I am using AjaxLoadingPanel with a farpoint control. Since, it was not showing the loading image, I tried to put the farpoint control inside a panel or div. Code below shows how I have implemented the loading panel.
<
telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Height="75px"
Width="75px">
<img alt="Loading..." src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading.gif") %>'
style="border: 0px;" />
</telerik:RadAjaxLoadingPanel>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="ButtonViewColumnHeader">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="divSpread" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
After loading the control, I get the clientID of the updated control written on my aspx page (just above the control) as shown below.
Has anyone come across such a strange issue? Is there any way to get rid of this display? many thanks, Anu |
|||