AdaptableRowContext

Context provided for per Row callbacks

TypeScript
export interface AdaptableRowContext<TData = any> extends
Extends

BaseContext

Properties

PropertyDescription
rowNodeThe current Row
adaptableContextCustom 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