Table of Contents

Class GridData<T>

Namespace
MudBlazor
Assembly
MudBlazor.dll

Represents data to display in a MudDataGrid<T>.

public class GridData<T>

Type Parameters

T

The kind of item managed by the grid.

Inheritance
GridData<T>
Inherited Members
Extension Methods

Constructors

GridData()

public GridData()

Properties

Items

The items to display in the grid.

public IEnumerable<T> Items { get; set; }

Property Value

IEnumerable<T>

TotalItems

The total number of items, excluding page size.

public int TotalItems { get; set; }

Property Value

int

Remarks

This property is used to determine the number of pages of data.