Hello,
I have a form that need a numeric field for 11 digits number. When I try to put a max limit like "99999999999", I have an error "Please select a value below 2147483647.". That match with the Int32 max limit so I was wondering if I can use the same input type but for Int64 and how to do it ?
If no, is there any solution else than using a input text ?
If I must use a text input, can you explain how to check if the value is only numeric ?
Regards.