SmartEditOperationContext
Context used in Custom Smart Edit Operations
TypeScript
export interface SmartEditOperationContext<TData = any> extendsExtends
Properties
| Property | Description |
|---|---|
| currentCell | Current selected grid cell - contains column, row and cell value information |
| smartEditValue | Smart Edit value |
| adaptableContext | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
currentCell
Current selected grid cell - contains column, row and cell value information
TypeScript
currentCell: GridCell<TData>;Property Value
GridCell<TData>
smartEditValue
Smart Edit value
TypeScript
smartEditValue: number;Property Value
number
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any