SmartEditOperationContext

Context used in Custom Smart Edit Operations

TypeScript
export interface SmartEditOperationContext<TData = any> extends
Extends

BaseContext

Properties

PropertyDescription
currentCellCurrent selected grid cell - contains column, row and cell value information
smartEditValueSmart Edit value
adaptableContextCustom 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