CustomEditColumnValuesContext
Context used when getting Distinct Column Values for Editing
TypeScript
export interface CustomEditColumnValuesContext<TData = any> extendsExtends
AdaptableColumnContext<TData>
Properties
| Property | Description |
|---|---|
| currentSearchValue | Search text in Edit - used when fetching values from server |
| defaultValues | Current distinct values in Column |
| gridCell | Currently edited Grid Cell |
| adaptableContext | Custom 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
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any