CreateRowFormContext
Context used in a Create Row Form
TypeScript
export interface CreateRowFormContext<TData = any> extendsExtends
Properties
| Property | Description |
|---|---|
| clonedRowNode | The RowNode being cloned |
| type | Type of the Context |
| adaptableContext | 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