RowFormTitleContext
Context used for overriding Title and Description of Row Form
TypeScript
export interface RowFormTitleContext<TData = any> extendsExtends
Properties
| Property | Type | Description |
|---|---|---|
| rowNode | IRowNode<TData> | |
| type | Extract<RowFormType, 'rowEdited' | 'rowCreated'> | |
| adaptableContext | any | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
rowNode
TypeScript
rowNode?: IRowNode<TData>;Property Value
IRowNode<TData>
type
TypeScript
type: Extract<RowFormType, 'rowEdited' | 'rowCreated'>;Property Value
Extract<RowFormType, 'rowEdited' | 'rowCreated'>
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any