NumericTextBoxOptions
The available configuration options for the NumericTextBox components, used internally in the recurrence editor.
autoCorrect?
boolean
Specifies whether the value will be auto-corrected based on the minimum and maximum values (see example).
format
string | NumberFormatOptions
Specifies the number format which is used when the NumericTextBox is not focused
(see example).
If format
is set to null
or undefined
, the default format will be used.
max?
number
Specifies the greatest value that is valid (see example).
min?
number
Specifies the smallest value that is valid (see example).
readonly?
boolean
Determines whether the NumericTextBox is in its read-only state (see example).
selectOnFocus?
boolean
Determines whether the whole value will be selected when the NumericTextBox is clicked. Defaults to true
.
spinners?
boolean
Specifies whether the Up and Down spin buttons will be rendered (see example).
step?
number
Specifies the value that is used to increment or decrement the component value (see example).
title?
string
Sets the title of the input
element of the NumericTextBox.