Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxPopupBase.ZIndex Property

Specifies the Popup’s z-index.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[Parameter]
public int? ZIndex { get; set; }

#Property Value

Type Description
Nullable<Int32>

The Popup’s z-index; null if the z-index is calculated automatically.

#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.

You can show multiple Popups simultaneously. Their z-index is calculated based on the display order: 1050 for the first Popup, which increases for Popups shown later. If your application has a complex layout, or you want to change the default order of elements, use the ZIndex property.

See Also