CellEditableContext

Context used when checking Cell editability

TypeScript
export interface CellEditableContext<TData = any> extends
Extends

BaseContext

Properties

PropertyTypeDescription
defaultColDefEditableValuebooleanDefault editability according to the AG Grid Column Definition (ColDef.editable)
gridCellGridCell<TData>Cell being edited
adaptableContextanyCustom 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