Try to instance a jqxNumberInput like this:
$(‘#jqxNumberInput’).jqxNumberInput({ width: ‘170px’, height: ’24px’, digits: 10, decimalSeparator: ‘,’, groupSeparator: ‘.’, max: 9999999999, min: -9999999999, spinButtons: false});
This is the Italian way to write a number
In Italian 1234.56 is written like 1.234,56
After if you try to set a value with something like this:
$(‘#jqxNumberInput’).jqxNumberInput(‘val’, 1234.01);
or like this:
$(‘#jqxNumberInput’).val(1234.01);
the value displayed is wrong… I expected 1.234,01 but it’s displayed 123.401,00
The BUG is happening only if you set decimalSeparator to comma…
By using the English way to write a number (1,234.01) this problem never happen.
I’m using the last release of jqxWidget –> jQWidgets v3.0.4 Release, November-01-2013
Please reply to me.