CellUpdateRequest

Lightweight object used for identifying a Cell to be updated

TypeScript
export interface

Properties

PropertyDescription
columnIdId of Column in which edited cell is situated
newValueNew Value for the cell
primaryKeyValuePrimary Key column's value in row - how Adaptable locates the cell
rowNodeAG 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>