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:
public class TableGridBaseCommandEventArgs : EventArgs
Inheritance: objectEventArgsTableGridBaseCommandEventArgs
Derived Classes:
Inherited Members
Constructors
Properties
Defines the updated field. Available for incell editing.
public string Field { get; set; }
Defines if the command should be cancelled.
public bool IsCancelled { get; set; }
Defines if the data item is recently added by the end user through the Component UI.
public bool IsNew { get; set; }
Defines the affected data item. You can cast it to the model type to which you bind the Grid.
[Obsolete("This property is deprecated. Use the Items property instead.")]
public object Item { get; set; }
Defines the affected data items in batch operations such as batch delete. Contains all selected items when the delete toolbar button is used with multiple selection. You can cast each item to the model type to which you bind the Grid.
public IEnumerable<object> Items { get; set; }