CellEditableContext

Context used when checking Cell editability

TypeScript
export interface CellEditableContext<TData = any> extends
Extends

BaseContext

Properties

PropertyDescription
defaultColDefEditableValueDefault editability according to the AG Grid Column Definition (ColDef.editable)
gridCellCell being edited
adaptableContextCustom 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