You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Anyway, assume SuperBigDecimalField with maximum fraction length 3 and scientific notation support. Entering 1e-5 will assign the value to be, well, 1e-5 represented by 0,0. Entering exactly that string into the number field will not trigger value change and hence will not modify the value of the number field to be 0.
This should not happen, entering any string should overwrite the value of the field to whatever the value represents. Note this only happens when scientific notation is supported in SuperBigDecimalField.
The text was updated successfully, but these errors were encountered:
fixed, and as a side effect numbers entered with scientific notation are no longer reformatted (so 2e-5 stays formatted as 2e-5 even when the cursor leaves)
I have no idea how to title this ticket properly.
Anyway, assume
SuperBigDecimalField
with maximum fraction length 3 and scientific notation support. Entering1e-5
will assign the value to be, well,1e-5
represented by0,0
. Entering exactly that string into the number field will not trigger value change and hence will not modify the value of the number field to be0
.This should not happen, entering any string should overwrite the value of the field to whatever the value represents. Note this only happens when scientific notation is supported in
SuperBigDecimalField
.The text was updated successfully, but these errors were encountered: