Hi everyone,
I would like to have a number formatted with two digits and two decimalDigits and control the value via spinButtons with a step of 0.1.
Anyway I’m experimenting an issue running the following code, basically I’m unable to increase/decrease the value using spin buttons.
$("#jqxNumberInput").jqxNumberInput({
width: '250px',
height: '25px',
theme:'energyblue',
spinButtons:true,
spinButtonsStep:0.1,
spinMode: 'simple',
promptChar:"",
decimalDigits:2,
digits:2
});
Just for testing, using digits:3
, editing via spin buttons works.
Seems that using digits:2
and spinButtonsStep:0.1
togheter cause that issue.
Could you help me, please?
Regards,
Giorgio.