Table of Contents

Class HeaderContext<T>

Namespace
MudBlazor
Assembly
MudBlazor.dll

Represents the current state of a header in a MudDataGrid<T>.

public class HeaderContext<T>

Type Parameters

T

The kind of item being managed.

Inheritance
HeaderContext<T>
Inherited Members
Extension Methods

Constructors

HeaderContext(MudDataGrid<T>)

Creates a new instance.

public HeaderContext(MudDataGrid<T> dataGrid)

Parameters

dataGrid MudDataGrid<T>

The MudDataGrid<T> which contains the header.

Properties

Actions

The behaviors which are allowed for this header.

public HeaderContext<T>.HeaderActions Actions { get; }

Property Value

HeaderContext<T>.HeaderActions

IsAllSelected

Indicates whether all items are currently selected.

public bool? IsAllSelected { get; }

Property Value

bool?

Items

The items to apply to the header.

public IEnumerable<T> Items { get; }

Property Value

IEnumerable<T>