ListRenderMode Enum
Lists values that specify how list-based editors render their item lists.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
public enum ListRenderMode
Members
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. |
Related API Members
The following properties accept/return ListRenderMode values:
Remarks
<DxListBox Data="@Data"
ListRenderMode="ListRenderMode.Virtual">
</DxListBox>
@code {
IEnumerable<string> Data;
}
See Also