AdaptableNumberCellEditorParams

Adaptable number editor parameters extending the AG Grid .

TypeScript
export interface AdaptableNumberCellEditorParams extends
Extends

ICellEditorParams

Properties

PropertyDescriptionDefault
emptyValueValue to set for the cell, when the clear button is pressed'' (empty string)
onValueChange
showClearButtonWhether to show the clear button. If true, it works together with cellEditorParams.emptyValuetrue

Property Details

emptyValue

Value to set for the cell, when the clear button is pressed

TypeScript
emptyValue: string;
Default Value

'' (empty string)

Property Value

string

onValueChange

TypeScript
onValueChange: (value: any) => void;
Property Value

(value: any) => void

showClearButton

Whether to show the clear button. If true, it works together with cellEditorParams.emptyValue

TypeScript
showClearButton: boolean;
Default Value

true

Property Value

boolean