IsRowFilterableContext

Context used for setting whether a Row can be Column Filtered

TypeScript
export interface IsRowFilterableContext<TData = any> extends
Extends

BaseContext

Properties

PropertyDescription
dataThe data in the Row Node
rowNodeThe Row Node about to be evaluated
adaptableContextCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

data

The data in the Row Node

TypeScript
data: TData;
Property Value

TData

rowNode

The Row Node about to be evaluated

TypeScript
rowNode: IRowNode;
Property Value

IRowNode

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any