IGridEditEventArgs
Represents event arguments related to grid editing. The event is cancelable It contains information about the row and the column, as well as the old and nwe value of the element/cell
Properties
Section titled "Properties"cancel
Section titled "cancel"Inherited from: CancelableEventArgs
Provides the ability to cancel the event.
cancel: boolean Defined in projects/igniteui-angular/core/src/core/utils.ts:421
Optional cellID
Section titled "cellID"Inherited from: IGridEditDoneEventArgs
cellID?: object Defined in projects/igniteui-angular/grids/core/src/common/events.ts:56
Optional column
Section titled "column"Inherited from: IGridEditDoneEventArgs
Optional Represents the column information of the edited cell
column?: ColumnType Defined in projects/igniteui-angular/grids/core/src/common/events.ts:87
Optional event
Section titled "event"Inherited from: IGridEditDoneEventArgs
Optional Represents the original event, that has triggered the edit
event?: Event Defined in projects/igniteui-angular/grids/core/src/common/events.ts:82
Optional isAddRow
Section titled "isAddRow"Inherited from: IGridEditDoneEventArgs
Optional Indicates if the editing consists of adding a new row
isAddRow?: boolean Defined in projects/igniteui-angular/grids/core/src/common/events.ts:97
Optional newValue
Section titled "newValue"Inherited from: IGridEditDoneEventArgs
Optional
Represents the value, that is being entered in the edited cell
When there is no newValue and the event has ended, the value of the cell returns to the oldValue
newValue?: any Defined in projects/igniteui-angular/grids/core/src/common/events.ts:76
oldValue
Section titled "oldValue"Inherited from: IGridEditDoneEventArgs
Represents the previous (before editing) value of the edited cell. It's used when the event has been stopped/exited.
oldValue: any Defined in projects/igniteui-angular/grids/core/src/common/events.ts:70
Optional owner
Section titled "owner"Inherited from: IGridEditDoneEventArgs
Optional Represents the grid instance that owns the edit event.
owner?: GridType Defined in projects/igniteui-angular/grids/core/src/common/events.ts:92
primaryKey
Section titled "primaryKey"Inherited from: IGridEditDoneEventArgs
primaryKey: any Defined in projects/igniteui-angular/grids/core/src/common/events.ts:54
rowData
Section titled "rowData"Inherited from: IGridEditDoneEventArgs
rowData represents the updated/committed data of the row after the edit (newValue)
The only case rowData (of the current object) is used directly, is when there is no rowEditing or transactions enabled
rowData: any Defined in projects/igniteui-angular/grids/core/src/common/events.ts:65
rowID
Section titled "rowID"Inherited from: IGridEditDoneEventArgs
rowID: any Defined in projects/igniteui-angular/grids/core/src/common/events.ts:50
rowKey
Section titled "rowKey"Inherited from: IGridEditDoneEventArgs
rowKey: any Defined in projects/igniteui-angular/grids/core/src/common/events.ts:55
Optional valid
Section titled "valid"Inherited from: IGridEditDoneEventArgs
Optional Indicates if the new value would be valid. It can be set to return the result of the methods for validation of the grid
valid?: boolean Defined in projects/igniteui-angular/grids/core/src/common/events.ts:103