CellUpdateRequest
Lightweight object used for identifying a Cell to be updated
TypeScript
export interfaceProperties
| Property | Description |
|---|---|
| columnId | Id of Column in which edited cell is situated |
| newValue | New Value for the cell |
| primaryKeyValue | Primary Key column's value in row - how Adaptable locates the cell |
| rowNode | AG Grid Row Node that contains the cell (optional) |
Property Details
columnId
Id of Column in which edited cell is situated
TypeScript
columnId: string;Property Value
string
newValue
New Value for the cell
TypeScript
newValue: any;Property Value
any
primaryKeyValue
Primary Key column's value in row - how Adaptable locates the cell
TypeScript
primaryKeyValue?: any;Property Value
any
rowNode
AG Grid Row Node that contains the cell (optional)
TypeScript
rowNode?: IRowNode<TData>;Property Value
IRowNode<TData>