Skip to main content
All docs
V26.1
  • IModelOptionsBlazor.VirtualScrollingEnabled Property

    Specifies whether virtual scrolling is enabled for all List Views in the Blazor application. When enabled, the List Editors load records as the user scrolls (instead of traditional pagination).

    Namespace: DevExpress.ExpressApp.Blazor.SystemModule

    Assembly: DevExpress.ExpressApp.Blazor.v26.1.dll

    Declaration

    [DefaultValue(false)]
    bool VirtualScrollingEnabled { get; set; }

    Property Value

    Type Default Description
    Boolean false

    true if virtual scrolling is enabled; otherwise, false.

    Remarks

    To enable or disable virtual scrolling globally, do the following:

    1. Open the Model Editor for the SolutionName.Blazor.Server\Model.xafml file.
    2. Navigate to the required List View node: SolutionName | Options.
    3. Specify the VirtualScrollingEnabled property.

    XAF ASP.NET Core Blazor Virtual Scrolling Global Option, DevExpress

    To control virtual scrolling availability for individual List Views, use the IModelListViewBlazor.VirtualScrollingEnabled property.

    See Also