Class
TableGridBaseCommandEventArgs

The class describes the event arguments of the Component events that are triggered by command buttons and CUD operations.

Definition

Namespace:Telerik.Blazor.Components.Common.Grid

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class TableGridBaseCommandEventArgs : EventArgs

Inheritance: objectEventArgsTableGridBaseCommandEventArgs

Derived Classes: GanttTaskCommandEventArgsGridCommandEventArgsTreeListCommandEventArgs

Inherited Members EventArgs.Empty

Constructors

TableGridBaseCommandEventArgs(bool)

Declaration

cs-api-definition
public TableGridBaseCommandEventArgs(bool isNew)

Parameters

isNew

bool

TableGridBaseCommandEventArgs(object)

Declaration

cs-api-definition
public TableGridBaseCommandEventArgs(object item)

Parameters

item

object

TableGridBaseCommandEventArgs(object, bool)

Declaration

cs-api-definition
public TableGridBaseCommandEventArgs(object item, bool isNew)

Parameters

item

object

isNew

bool

TableGridBaseCommandEventArgs(object, string, object)

Declaration

cs-api-definition
public TableGridBaseCommandEventArgs(object item, string field, object value)

Parameters

item

object

field

string

value

object

Properties

Field

Defines the updated field. Available for incell editing.

Declaration

cs-api-definition
public string Field { get; set; }

Property Value

string

IsCancelled

Defines if the command should be cancelled.

Declaration

cs-api-definition
public bool IsCancelled { get; set; }

Property Value

bool

IsNew

Defines id the data item is recently added by the end user through the Component UI.

Declaration

cs-api-definition
public bool IsNew { get; set; }

Property Value

bool

Item

Defines the affected data item. You can cast it to the model type to which you bind the Grid.

Declaration

cs-api-definition
public object Item { get; set; }

Property Value

object

Value

Defines the updated value. Available for incell editing.

Declaration

cs-api-definition
public object Value { get; set; }

Property Value

object