The text validation “alphanumeric” does not allow a space during input and causes an error when filling out a form
how do you allow for it when asking for a name that has a space in it i.e. in a name “first last” or even a company name that may involve 3 words in it - i cannot seem to find another text option that would work - or is there a different approach needed
more:
any guidance on validation telephone numbers, street address with numbers and letters, postal codes etc - seems limited support available for these types on Wappler.
The way I see it, it would get too complex to implement every single case for validations.
I suggest, you try combining different validations. So for example for the phone number, set a minimum length and a maximum length plus the number or digit validation itself.
As for the address, I’d separate the street name and the street number. It is much more clean and also easier to process.
I guess postal code has a defined number of digits in your country so again, you can use min and max length for constraining the validation.
As @jowhiskey suggested the built-in options have to be limited. However, in effect, the options are more or less unlimited as you can use regular expressions (using the Pattern option). There are lots of examples online and testers like this.