EditRowFormContext
Context used in an Edit Row Form
TypeScript
export interface EditRowFormContext<TData = any> extendsExtends
Properties
| Property | Type | Description |
|---|---|---|
| rowNode | IRowNode<TData> | The RowNode being edited |
| type | Extract<RowFormType, 'rowEdited'> | Type of the Context |
| adaptableContext | any | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
rowNode
The RowNode being edited
TypeScript
rowNode: IRowNode<TData>;Property Value
IRowNode<TData>
type
Type of the Context
TypeScript
type: Extract<RowFormType, 'rowEdited'>;Property Value
Extract<RowFormType, 'rowEdited'>
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any