IsRowFilterableContext
Context used for setting whether a Row can be Column Filtered
TypeScript
export interface IsRowFilterableContext<TData = any> extendsExtends
Properties
| Property | Description |
|---|---|
| data | The data in the Row Node |
| rowNode | The Row Node about to be evaluated |
| adaptableContext | Custom 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