If I set the decimalSeparator to something different than ‘.’ and I have more than 2 decimal digits, working with simple input mode, when I try to read the input value I get only the first 2 decimals.
See the example code:
$(“#jqxNumberInput”).jqxNumberInput({
height: 20,
width: 80,
theme: ‘energyblue’,
inputMode: ‘simple’,
decimalDigits: 4,
digits: 4,
decimalSeparator: ‘,’
});
$(‘#jqxNumberInput’).val(1.2345);
alert($(‘#jqxNumberInput’).val());
The response is 1.23 instead of 1.2345
If I change back the decimalSeparator property or the inputMode property everything works fine.