Hi all,
Using the following settings, I’ve come across a scenario where it appears that the spin buttons do not work:
$(“#jqxNumberInput”).jqxNumberInput({
width: ’50px’,
height: ’18px’,
theme: ‘energyblue’,
min: 0,
max: 1,
digits: 1,
decimalDigits: 1,
spinButtons: true,
spinButtonsStep: 0.1,
spinMode: ‘simple’
});
<div id=’jqxNumberInput’></div>
If I remove the “digits” property or set the value in “digits” to 4 or above, the control works just fine. Does anyone have any insight into why this is the case? Thank you in advance!