ResolveContextDataContext

Used to build Context Data

TypeScript
export interface ResolveContextDataContext extends
Extends

BaseContext

Properties

PropertyDescription
contextMappedFromGridDataFDC3 Context Data which has been mapped from the grid data based on the given configuration in gridDataContextMapping
contextTypeFDC3 Context Type
primaryKeyValuePrimary Key value of row
rowDataRow data which is the source of the context data
rowNodeRow Node which is source of the context data
adaptableContextCustom 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