There is input element where user can enter number. Each time when input element is loosing focus numberParser and numberFormatter (minimumIntegerDigits = 1, minimumFractionDigits = 0, maximumFractionDigits = 10) methods are called.
If enter 12345678912345,123 I get 12345678912345,121.
If enter 12345678912345,121 I get 12345678912345,12.
If enter 12345678912345,123 and two times click out and in input element (without manual editing of value) the value will change.
Is there any way to fix this?
Hi,
There is input element where user can enter number. Each time when input element is loosing focus numberParser and numberFormatter (minimumIntegerDigits = 1, minimumFractionDigits = 0, maximumFractionDigits = 10) methods are called. If enter 12345678912345,123 I get 12345678912345,121. If enter 12345678912345,121 I get 12345678912345,12. If enter 12345678912345,123 and two times click out and in input element (without manual editing of value) the value will change. Is there any way to fix this?
Thanks