CustomDisplayFormatterContext

Context used in handler of CustomDisplayFormatter

TypeScript
export interface CustomDisplayFormatterContext extends
Extends

BaseContext

Properties

PropertyTypeDescription
adaptableColumnAdaptableColumnColumn where Custom Display Format will apply
cellValueanyNon-formatted Cell Value
rowNodeIRowNodeNode where Custom Display Format will apply
adaptableContextanyCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

adaptableColumn

Column where Custom Display Format will apply

TypeScript
adaptableColumn: AdaptableColumn;
Property Value

AdaptableColumn

cellValue

Non-formatted Cell Value

TypeScript
cellValue: any;
Property Value

any

rowNode

Node where Custom Display Format will apply

TypeScript
rowNode: IRowNode;
Property Value

IRowNode

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any