QuickGrid<TGridItem>.Virtualize Property

Definition

If true, the grid will be rendered with virtualization. This is normally used in conjunction with scrolling and causes the grid to fetch and render only the data around the current scroll viewport. This can greatly improve the performance when scrolling through large data sets.

If you use Virtualize, you should supply a value for ItemSize and must ensure that every row renders with the same constant height.

Generally it's preferable not to use Virtualize if the amount of data being rendered is small or if you are using pagination.

[Microsoft.AspNetCore.Components.Parameter]
public bool Virtualize { get; set; }
[<Microsoft.AspNetCore.Components.Parameter>]
member this.Virtualize : bool with get, set
Public Property Virtualize As Boolean

Property Value

Attributes

Applies to