Class TableData<T>
- Namespace
- MudBlazor
- Assembly
- MudBlazor.dll
The result of a call to ServerData.
public class TableData<T>
Type Parameters
T
The type of item to display in the table.
- Inheritance
-
TableData<T>
- Inherited Members
- Extension Methods
Constructors
TableData()
public TableData()
Properties
Items
The items to display in the table.
public IEnumerable<T>? Items { get; set; }
Property Value
- IEnumerable<T>
Remarks
The number of items should match the number in PageSize.
TotalItems
The total number of items, excluding pagination.
public int TotalItems { get; set; }
Property Value
Remarks
This number is used to calculate the total number of pages in the table.