Number field over 16 digits auto rounding

Once more than 16 characters are entered in the number input field, on blur all numbers after the 16th digit are automatically changed to zeros.

Please see below:
image
image

Hi @smorris, this is a limitation with JavaScript:

"The maximum safe integer in JavaScript (2^53 - 1). The largest positive representable number. The minimum safe integer in JavaScript (-(2^53 - 1))."

Source:

When do we need more than 16 digits? We can always save that data as text if we are trying to reference it later.