New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
Controlling Z-Index
RadAjaxLoadingPanel has default z-index set to 90000. To change this default setting, you can use one of the approaches below, based on the way the loading panel is configured:
- When RadAjaxLoadingPanel uses Skin the Z-index could be directly set in the markup using the ZIndex property of the control
ASP.NET
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Vista" ZIndex="3000" />
- When RadAjaxLoadingPanel has a template defined, the z-index could be set through inline CSS:
ASP.NET
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" style="z-index:3000;">
<img alt="loading..." src="loading.gif" />
</telerik:RadAjaxLoadingPanel>
Note that when IsSticky is set to true , z-index is not automatically assigned to the RadAjaxLoadingPanel .