It seems that the max allowable value in Numeric property editor is 999 999 999. Anyone know if it is possible to allow even larger numbers, e.g. 1 billion?
You could yes, but why bother when a standard text input would suffice. The limitation is not from Umbraco, the same limit would apply to any type=number input as it would fail validation.
Numeric property editor
It seems that the max allowable value in Numeric property editor is 999 999 999. Anyone know if it is possible to allow even larger numbers, e.g. 1 billion?
you could use a text input and set max-length and use a regex validator to only allow numbers
Brilliant no-frills solution. I will do this going forward.
The thing is, my editors have already created a bunch of content elements using the numeric property, and it would be sad to see their work disappear.
Still interested in a method to make the numeric property editor allow numbers >1.000.000.000.
AFAIK this is a html/.net limitation and nothing to do with umbraco
ok, I was not aware of this
text and regex it is
You could also created a custom property editor, with a Int64 as the value :D
Hi Steffen,
You could yes, but why bother when a standard text input would suffice. The limitation is not from Umbraco, the same limit would apply to any type=number input as it would fail validation.
is working on a reply...