Class TableGridBaseCommandEventArgs
The class that describes the event arguments to the component events.
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 whether the command should be cancelled.
Declaration
public bool IsCancelled { get; set; }
Property Value
System.Boolean
|
IsNew
Defines whether the item is recently added by the end user through the interface.
Declaration
public bool IsNew { get; set; }
Property Value
System.Boolean
|
Item
Defines the item that has been affected. 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
|