AdaptableNumberCellEditorParams
Adaptable number editor parameters extending the AG Grid .
TypeScript
export interface AdaptableNumberCellEditorParams extendsExtends
ICellEditorParams
Properties
| Property | Description | Default |
|---|---|---|
| emptyValue | Value to set for the cell, when the clear button is pressed | '' (empty string) |
| onValueChange | ||
| showClearButton | Whether to show the clear button. If true, it works together with cellEditorParams.emptyValue | true |
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