AdaptableRowContext
Context provided for per Row callbacks
TypeScript
export interface AdaptableRowContext<TData = any> extendsExtends
Properties
| Property | Type | Description |
|---|---|---|
| rowNode | IRowNode<TData> | The current Row |
| adaptableContext | any | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
rowNode
The current Row
TypeScript
rowNode: IRowNode<TData>;Property Value
IRowNode<TData>
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any