IListEditorBase<TData, TValue>.ListRenderMode Property
In This Article
Specifies how an editor renders its items.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
[DefaultValue(ListRenderMode.Entire)]
ListRenderMode ListRenderMode { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
List |
Entire | A List |
Available values:
Name | Description |
---|---|
Entire | The editor renders the entire item list. Use this option for small item lists where scrolling should be instant. |
Virtual | The editor renders list items only after they appear in the viewport. This approach improves performance when the list contains many items. |
See Also