It would be nice to have the ability to 'Or' constraints. Use Case: I have an input field that can be blank. If it is not blank, it should be an integer. Potential Solution: ``` html <input type='text' data-constraints='@Blank | @Integer @Min(value=0)'/> ```
It would be nice to have the ability to 'Or' constraints.
Use Case: I have an input field that can be blank. If it is not blank, it should be an integer.
Potential Solution: