Hi All,
I am having problem in the AjaxLoading Panel. I want to display the loading panel in whole page rather then the specific control for that i used RadAjaxPanel l in the master page like this:
<telerik:RadAjaxPanel ID="Loadingpanel1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" DefaultLoadingPanelID="RadAjaxLoadingPanel1">
<ClientEvents OnRequestStart="RequestStart()" />
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="Loadingpanel1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="Loadingpanel1" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Transparency="30" IsSticky="true" CssClass="MyModalPanel" Skin="" ScrollBars="None">
<asp:Image ID="Image1" runat="server" AlternateText="Wird geladen" Style="" ImageUrl= "~/App_Themes/WillisDRITheme/Images/Processing.gif" CssClass="MyLoadingImage"/>
</telerik:RadAjaxLoadingPanel> <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</telerik:RadAjaxPanel>
this will display the Loading panel in the whole page but the image is not display in the center of the page. Like when the page is scrollable i.e. page height is more then the screen height in that case the loading image should be always in the center.But Image appear to the center of the whole page height(screen height).
I use given script to use the loading panel in full page.
and use this Style for the Loading Image.
Thanks
Wish you new Year!!