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

    Specifies whether virtual scrolling is enabled in the List Editor. When enabled, the editor loads records as the user scrolls the page (instead of traditional pagination).

    Namespace: DevExpress.ExpressApp.Blazor.SystemModule

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

    Declaration

    [ModelBrowsable(typeof(IModelListViewBlazorVirtualScrollingVisibilityCalculator))]
    bool VirtualScrollingEnabled { get; set; }

    Property Value

    Type Description
    Boolean

    true if virtual scrolling is enabled; otherwise, false.

    Remarks

    To enable or disable virtual scrolling in an individual List View, 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 | Views | SolutionName.Module.BusinessObjects | ClassName | ClassName_ListView.
    3. Specify the VirtualScrollingEnabled property.

    XAF ASP.NET Core Blazor Virtual Scrolling in Individual List Views, DevExpress

    To control virtual scrolling globally, use the IModelOptionsBlazor.VirtualScrollingEnabled property.

    See Also