CustomDisplayFormatterContext

Context used in handler of CustomDisplayFormatter

TypeScript
export interface CustomDisplayFormatterContext extends
Extends

BaseContext

Properties

PropertyDescription
adaptableColumnColumn where Custom Display Format will apply
cellValueNon-formatted Cell Value
rowNodeNode where Custom Display Format will apply
adaptableContextCustom 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