CreateRowFormContext

Context used in a Create Row Form

TypeScript
export interface CreateRowFormContext<TData = any> extends
Extends

FormContext

Properties

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