Character limit integer fields

0
Is there a way to set a character limit on integer fields? I know this is a feature on textarea elements but it does not appear to be possible on normal inputs… 
asked
2 answers
1

Use a validation rule on the attribute “Maximum length”

Additionally, a limit on input field isn’t really limitation, since storage of a longer value is still possible. Therefor a validation rule would be a better solution

 

answered
0

Validation => Custom validation

value limit:

$value < whatYouWantToBeTheMaximum

answered