Hi,
I need an input mask (format) for a number of integer fields. I need the format to only allow for integers, and at the same time a limit the number of digits that can be entered. The basic “#” or “####” will not do because they allow for either “any number of integers” or a “restricted number ofg integers”. I would need something like:
#?##, which would mean: If you enter a integer you can enter up to 3 integers, but that last 2 are optional.
This would allow for:
[null]
1
12
123
but not
1234
Sorry for the lengthy explanation, but I hope the problem is clear.
W.