ResolveContextDataContext

Used to build Context Data

TypeScript
export interface ResolveContextDataContext extends
Extends

BaseContext

Properties

PropertyTypeDescription
contextMappedFromGridDataContextFDC3 Context Data which has been mapped from the grid data based on the given configuration in gridDataContextMapping
contextTypeContextTypeFDC3 Context Type
primaryKeyValueanyPrimary Key value of row
rowDataanyRow data which is the source of the context data
rowNodeIRowNodeRow Node which is source of the context data
adaptableContextanyCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

contextMappedFromGridData

FDC3 Context Data which has been mapped from the grid data based on the given configuration in gridDataContextMapping

TypeScript
contextMappedFromGridData?: Context;
Property Value

Context

contextType

FDC3 Context Type

TypeScript
contextType: ContextType;
Property Value

ContextType

primaryKeyValue

Primary Key value of row

TypeScript
primaryKeyValue: any;
Property Value

any

rowData

Row data which is the source of the context data

TypeScript
rowData: any;
Property Value

any

rowNode

Row Node which is source of the context data

TypeScript
rowNode: IRowNode;
Property Value

IRowNode

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any