EditRowFormContext

Context used in an Edit Row Form

TypeScript
export interface EditRowFormContext<TData = any> extends
Extends

FormContext

Properties

PropertyDescription
rowNodeThe RowNode being edited
typeType of the Context
adaptableContextCustom 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