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
The string type with number appearance currently is limited to 17 digits1. It shouldn't have a length restriction.
The decimal type allows up to 18 digits. Collect caps input at 15 characters. Decide whether to align.
The integer type allows up to 9 digits and a -. Collect caps input at 9 characters. Decide whether to align.
Currently if an out-of-bounds input is entered, the field is forced to the nearest bound. Collect limits the number of digits that can be entered in the case of direct input.
More specifically, it has all of the limitations of JavaScript's number type. A 17 digit integer is an easy way to demonstrate this as it exceeds Number.MAX_SAFE_INTEGER. ↩
The text was updated successfully, but these errors were encountered:
Follow up to #261
The string type with number appearance currently is limited to 17 digits1. It shouldn't have a length restriction.
The decimal type allows up to 18 digits. Collect caps input at 15 characters. Decide whether to align.
The integer type allows up to 9 digits and a -. Collect caps input at 9 characters. Decide whether to align.
Currently if an out-of-bounds input is entered, the field is forced to the nearest bound. Collect limits the number of digits that can be entered in the case of direct input.
Negative numbers can't be input on iOS: primefaces/primevue#6640
Footnotes
More specifically, it has all of the limitations of JavaScript's number type. A 17 digit integer is an easy way to demonstrate this as it exceeds
Number.MAX_SAFE_INTEGER
. ↩The text was updated successfully, but these errors were encountered: