Detailed information about a Row in AdapTable

TypeScript
export interface

Properties

PropertyDescription
primaryKeyValuePrimary Key column's value for Row - how Adaptable locates a cell
rowDataActual data in the Row
rowInfoObject which provides 'meta data' about the Row
rowNodeAG 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

RowInfo

rowNode

AG Grid Row Node object for the Row

TypeScript
rowNode?: IRowNode<TData>;
Property Value

IRowNode<TData>