Hello,
when the inputMode is set to ‘simple’ on an touch device, an error is thrown. To reprodcue that error, you can just test it on JSFiddle (http://jsfiddle.net/GtGWM/506/)
$(“#jqxNumberInput”).jqxNumberInput({
width: ‘250px’,
height: ’25px’,
theme: ‘energyblue’,
spinButtons: true,
symbol: ‘EUR ‘,
inputMode: ‘textbox’
});
$(“#jqxNumberInput”).jqxNumberInput(‘val’, 3);
$(“#jqxNumberInput”).jqxNumberInput({inputMode: ‘simple’});
$(“#jqxNumberInput”).jqxNumberInput(‘val’, 10);
If I set the inputMode to ‘simple’ on a touch device, it is set to ‘textbox’ on createInstance. After that the inputMode is set to simple, which throws an exception after the second value is set.