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