GridRow
Detailed information about a Row in AdapTable
TypeScript
export interfaceProperties
| Property | Description |
|---|---|
| primaryKeyValue | Primary Key column's value for Row - how Adaptable locates a cell |
| rowData | Actual data in the Row |
| rowInfo | Object which provides 'meta data' about the Row |
| rowNode | AG Grid Row Node object for the Row |
Property Details
primaryKeyValue
Primary Key column's value for Row - how Adaptable locates a cell
TypeScript
primaryKeyValue: any;Property Value
any
rowData
Actual data in the Row
TypeScript
rowData?: TData;Property Value
TData
rowInfo
Object which provides 'meta data' about the Row
TypeScript
rowInfo?: RowInfo;Property Value
rowNode
AG Grid Row Node object for the Row
TypeScript
rowNode?: IRowNode<TData>;Property Value
IRowNode<TData>