Table of Contents

Class TableGroupData<TKey, TElement>

Namespace
MudBlazor
Assembly
MudBlazor.dll

The data within a MudTable<T> group when grouping is enabled.

public class TableGroupData<TKey, TElement>

Type Parameters

TKey

The unique key of this group.

TElement

The type of data within this group.

Inheritance
TableGroupData<TKey, TElement>
Inherited Members
Extension Methods

Constructors

TableGroupData(string?, TKey?, IEnumerable<TElement>)

Creates a new instance.

public TableGroupData(string? groupName, TKey? key, IEnumerable<TElement> items)

Parameters

groupName string

The label of this group.

key TKey

The unique key of this group.

items IEnumerable<TElement>

The data rows for this group.

Properties

GroupName

The label of this group.

public string? GroupName { get; }

Property Value

string

Items

The data rows for this group.

public IEnumerable<TElement> Items { get; }

Property Value

IEnumerable<TElement>

Key

The unique key of this group.

public TKey? Key { get; }

Property Value

TKey