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