DetailInitContext
Context passed to Detail Grids when using Master Detail Plugin
TypeScript
export interface DetailInitContext extendsExtends
Properties
| Property | Type | Description |
|---|---|---|
| data | IRowNode['data'] | The data in the Master Grid Row that was opened |
| primaryKeyValue | unknown | Primary Key Value of Master Grid Row that was opened |
| rowNode | IRowNode | Row Node in the Master Grid that was opened |
| adaptableContext | any | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
data
The data in the Master Grid Row that was opened
TypeScript
data: IRowNode['data'];Property Value
IRowNode['data']
primaryKeyValue
Primary Key Value of Master Grid Row that was opened
TypeScript
primaryKeyValue: unknown;Property Value
unknown
rowNode
Row Node in the Master Grid that was opened
TypeScript
rowNode: IRowNode;Property Value
IRowNode
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any