EditRowFormContext

Context used in an Edit Row Form

TypeScript
export interface EditRowFormContext<TData = any> extends
Extends

FormContext

Properties

PropertyTypeDescription
rowNodeIRowNode<TData>The RowNode being edited
typeExtract<RowFormType, 'rowEdited'>Type of the Context
adaptableContextanyCustom 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