ResolveContextDataContext
Used to build Context Data
TypeScript
export interface ResolveContextDataContext extendsExtends
Properties
| Property | Type | Description |
|---|---|---|
| contextMappedFromGridData | Context | FDC3 Context Data which has been mapped from the grid data based on the given configuration in gridDataContextMapping |
| contextType | ContextType | FDC3 Context Type |
| primaryKeyValue | any | Primary Key value of row |
| rowData | any | Row data which is the source of the context data |
| rowNode | IRowNode | Row Node which is source of the context data |
| adaptableContext | any | Custom 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