Class TableGridBaseCommandEventArgs
The class describes the event arguments of the Component events that are triggered by command buttons and CUD operations.
Inheritance
Namespace: Telerik.Blazor.Components.Common.Grid
Assembly: Telerik.Blazor.dll
Syntax
public class TableGridBaseCommandEventArgs : EventArgs
Constructors
TableGridBaseCommandEventArgs(Boolean)
Declaration
public TableGridBaseCommandEventArgs(bool isNew)
Parameters
System.Boolean
isNew
|
TableGridBaseCommandEventArgs(Object)
Declaration
public TableGridBaseCommandEventArgs(object item)
Parameters
System.Object
item
|
TableGridBaseCommandEventArgs(Object, Boolean)
Declaration
public TableGridBaseCommandEventArgs(object item, bool isNew)
Parameters
System.Object
item
|
System.Boolean
isNew
|
TableGridBaseCommandEventArgs(Object, String, Object)
Declaration
public TableGridBaseCommandEventArgs(object item, string field, object value)
Parameters
System.Object
item
|
System.String
field
|
System.Object
value
|
Properties
Field
Defines the updated field. Available for incell editing.
Declaration
public string Field { get; set; }
Property Value
System.String
|
IsCancelled
Defines if the command should be cancelled.
Declaration
public bool IsCancelled { get; set; }
Property Value
System.Boolean
|
IsNew
Defines id the data item is recently added by the end user through the Component UI.
Declaration
public bool IsNew { get; set; }
Property Value
System.Boolean
|
Item
Defines the affected data item. You can cast it to the model type to which you bind the Grid.
Declaration
public object Item { get; set; }
Property Value
System.Object
|
Value
Defines the updated value. Available for incell editing.
Declaration
public object Value { get; set; }
Property Value
System.Object
|