CustomEditColumnValuesContext

Context used when getting Distinct Column Values for Editing

TypeScript
export interface CustomEditColumnValuesContext<TData = any> extends
Extends

AdaptableColumnContext<TData>

Properties

PropertyDescription
currentSearchValueSearch text in Edit - used when fetching values from server
defaultValuesCurrent distinct values in Column
gridCellCurrently edited Grid Cell
adaptableContextCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

currentSearchValue

Search text in Edit - used when fetching values from server

TypeScript
currentSearchValue: string;
Property Value

string

defaultValues

Current distinct values in Column

TypeScript
defaultValues: Required<CustomEditColumnValueInfo>[];
Property Value

Required<CustomEditColumnValueInfo>[]

gridCell

Currently edited Grid Cell

TypeScript
gridCell: GridCell;
Property Value

GridCell

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any