DetailInitContext
Context passed to Detail Grids when using Master Detail Plugin
TypeScript
export interface DetailInitContext extendsExtends
Properties
| Property | Description |
|---|---|
| data | The data in the Master Grid Row that was opened |
| primaryKeyValue | Primary Key Value of Master Grid Row that was opened |
| rowNode | Row Node in the Master Grid that was opened |
| adaptableContext | 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