Skip to main content
A newer version of this page is available. .

ListRenderMode Enum

Lists values that specify how list-based editors load their item lists.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public enum ListRenderMode

Members

Name Description
Entire

The editor loads the entire item list. Use this option for small item lists where scrolling should be instant.

Virtual

The editor loads visible items only. This approach improves performance when the list contains many items.

Remarks

<DxListBox Data="@Data"
           ListRenderMode="ListRenderMode.Virtual">
</DxListBox>

@code {
    IEnumerable<string> Data;
}

Run Demo: List Box - Virtual Scrolling

Run Demo: ComboBox - Virtual Scrolling

Run Demo: TagBox - Virtual Scrolling

See Also