Skip to main content
A newer version of this page is available.
All docs
V20.2

DxPopup.Scrollable Property

Specifies whether scroll bars can appear in a pop-up window.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public bool Scrollable { get; set; }

Property Value

Type Description
Boolean

true to allow a pop-up window to show scroll bars; otherwise, false.

Remarks

When a pop-up window contains an element whose content does not fit the window’s size entirely, this content is displayed over the window’s boundaries.

Popup Scrollable False

Set the Scrollable property to true to display all the content within the pop-up window’s boundaries and show scroll bars.

<DxPopup HeaderText="Contact Information" Scrollable="true">
      ...
</DxPopup>

Popup Scrollable True

See Also