I'm dealing with ExtJS 6.2.1. I have a numberfield and need to limit it to three digits after a separator. So I use a decimalPrecision property:
{ xtype: 'numberfield', decimalPrecision: 3 }
Now, it seems that by default ExtJS uses midpoint rounding to the closest even number: 1.2345 turns into 1.234 and 1.2355 turns into 1.236. I need to change this behaviour to round away from zero, so that 1.2345 turns into 1.235. How can I achive this? Thanks.