Back to Devexpress

DxLoadingPanel.ZIndex Property

blazor-devexpress-dot-blazor-dot-dxloadingpanel-9820518f.md

latest1.5 KB
Original Source

DxLoadingPanel.ZIndex Property

Specifies the Loading Panel’s z-index.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(1100)]
[Parameter]
public int? ZIndex { get; set; }

Property Value

TypeDefaultDescription
Nullable<Int32>1100

The Loading Panel’s z-index; null to apply the default value.

|

Remarks

DevExpress pop-up components, such as drop-down or pop-up windows, overlap other elements. We use the z-index CSS property to arrange pop-up elements on the page. To ensure correct positioning, the components calculate z-indexes dynamically.

If your application has a complex layout, or you want to change the default order of elements, use the ZIndex property.

razor
<DxLoadingPanel Visible="true"
                ApplyBackgroundShading="true"
                ZIndex="2000"
                PositionTarget="#target-window">
</DxLoadingPanel>

See Also

DxLoadingPanel Class

DxLoadingPanel Members

DevExpress.Blazor Namespace