EditRowFormContext
Context used in an Edit Row Form
TypeScript
export interface EditRowFormContext<TData = any> extendsExtends
Properties
| Property | Description |
|---|---|
| rowNode | The RowNode being edited |
| type | Type of the Context |
| adaptableContext | 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