CellEditableContext
Context used when checking Cell editability
TypeScript
export interface CellEditableContext<TData = any> extendsExtends
Properties
| Property | Description |
|---|---|
| defaultColDefEditableValue | Default editability according to the AG Grid Column Definition (ColDef.editable) |
| gridCell | Cell being edited |
| adaptableContext | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
defaultColDefEditableValue
Default editability according to the AG Grid Column Definition (ColDef.editable)
TypeScript
defaultColDefEditableValue: boolean;Property Value
boolean
gridCell
Cell being edited
TypeScript
gridCell: GridCell<TData>;Property Value
GridCell<TData>
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any