You are viewing limited content. For full access, please sign in.

Question

Question

Is it possible to have an input for Int64 ?

asked on October 8, 2014

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.

0 0

Replies

replied on October 8, 2014

I think the only way to do it is to use a text field. You can make sure it's a numeric value by adding a regular expression to the field on the Advanced tab. For an 11 digit number, you would use the following: \d\d\d\d\d\d\d\d\d\d\d. That would make it have to be 11 digits. If it could be less than 11, let me know.

1 0
You are not allowed to follow up in this post.

Sign in to reply to this post.