I've attempted several methods of centering the loading panel on my page (has a fairly long RadGrid) and so far whnever I set the (issticky="true") my panel appears to be invisible or isn't being fired.
Actually with this current setup it is invisible on issticky true or false.
Here is my current implementation:
Actually with this current setup it is invisible on issticky true or false.
Here is my current implementation:
| .CenteredLoadingPanel { |
| position: absolute; |
| left: 50%; |
| top: 50%; |
| } |
| <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" CssClass="CenteredLoadingPanel" IsSticky="true"> |
| <asp:Image ID="Image1" runat="server" AlternateText="Loading..." ImageUrl="images/Loading.gif" /> |
| </telerik:RadAjaxLoadingPanel> |
| <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" LoadingPanelID="RadAjaxLoadingPanel1" > |