Selecting multiple validation rules

1
As for an email address, I would like this to be required, be unique and have a regular expression. image: http://prntscr.com/6ln6km Since the options are displayed as radio buttons, I assume you can only choose one option. How can I achieve this?
asked
2 answers
1

You actually just need to create multiple validation rules, one for each scenario.

answered
0

You can enter multiple rules for one attribute. But they will all be run. Unless your regex allows an empty value, both required and regex rule error messages will be shown. This can be prevented by setting required to true and specifying a required message on the input element on your page. You would have to do that on every page. Using a snippet will help reuse and prevent defining the same stuff over and over.

answered