DetailInitContext

Context passed to Detail Grids when using Master Detail Plugin

TypeScript
export interface DetailInitContext extends
Extends

BaseContext

Properties

PropertyDescription
dataThe data in the Master Grid Row that was opened
primaryKeyValuePrimary Key Value of Master Grid Row that was opened
rowNodeRow Node in the Master Grid that was opened
adaptableContextCustom 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