CreatedRowInfo
Info passed into RowFormSubmitted Event for Created Rows
TypeScript
export interface CreatedRowInfo<TData = any> extendsExtends
Properties
| Property | Type | Description |
|---|---|---|
| formData | AdaptableFormData | Data entered in the Form |
| rowNode | IRowNode<TData> | Node being added |
| type | 'rowCreated' | Specifies its a Created Row Form |
| adaptableContext | any | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
formData
Data entered in the Form
TypeScript
formData: AdaptableFormData;Property Value
rowNode
Node being added
TypeScript
rowNode?: IRowNode<TData>;Property Value
IRowNode<TData>
type
Specifies its a Created Row Form
TypeScript
type: 'rowCreated';Property Value
'rowCreated'
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any