Table of Contents

Class EditButtonContext

Namespace
MudBlazor
Assembly
MudBlazor.dll

Information about the Edit button of a MudTable<T> row.

public class EditButtonContext
Inheritance
EditButtonContext
Inherited Members
Extension Methods

Constructors

EditButtonContext(Action, bool, object?)

Creates a new instance.

public EditButtonContext(Action buttonAction, bool buttonDisabled, object? item)

Parameters

buttonAction Action

The action which occurs when the edit button is clicked.

buttonDisabled bool

Prevents the user from clicking the button.

item object

The item being edited.

Properties

ButtonAction

The action which occurs when the edit button is clicked.

public Action ButtonAction { get; }

Property Value

Action

ButtonDisabled

Prevents the user from clicking the button.

public bool ButtonDisabled { get; }

Property Value

bool

Item

The item being edited.

public object? Item { get; }

Property Value

object