CreateRowFormContext
Context used in a Create Row Form
TypeScript
export interface CreateRowFormContext<TData = any> extendsExtends
Properties
| Property | Type | Description |
|---|---|---|
| clonedRowNode | IRowNode<TData> | The RowNode being cloned |
| type | Extract<RowFormType, 'rowCreated'> | Type of the Context |
| adaptableContext | any | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
clonedRowNode
The RowNode being cloned
TypeScript
clonedRowNode?: IRowNode<TData>;Property Value
IRowNode<TData>
type
Type of the Context
TypeScript
type: Extract<RowFormType, 'rowCreated'>;Property Value
Extract<RowFormType, 'rowCreated'>
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any