You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

1.2 KiB

category type title
Components Data Entry InputNumber

Enter a number within certain range with the mouse or keyboard.

When To Use

When a numeric value needs to be provided.

API

property description type default
min min value number -Infinity
max max vale number Infinity
value current value number
step The number to which the current value is increased or decreased. It can be an integer or decimal. number|string 1
precision precision of input value number -
defaultValue initial value number
onChange The callback triggered when the value is changed. function(value: number | string)
disabled disable the input boolean false
size width of input box string -
formatter Specifies the format of the value presented function(value: number | string): string -
parser Specifies the value extracted from formatter function( string): number -