GridRow

Detailed information about a Row in AdapTable

TypeScript
export interface

Properties

PropertyTypeDescription
primaryKeyValueanyPrimary Key column's value for Row - how Adaptable locates a cell
rowDataTDataActual data in the Row
rowInfoRowInfoObject which provides 'meta data' about the Row
rowNodeIRowNode<TData>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

RowInfo

rowNode

AG Grid Row Node object for the Row

TypeScript
rowNode?: IRowNode<TData>;
Property Value

IRowNode<TData>