Validation
Form elements without a well defined option space can be validated. The validation will be first performed when clicking the next (or on the last page Submit) button. If the validation fails the user will be notified and the page will not be changed. After the first validation the validation will be performed on every change of the input. Every validation Type allows for setting a Validation Message
.
A toast message for failed validations can be activated in the Page Settings / Validation.
None
No validation will be performed.
Required
The input is required. If the input is empty the validation will fail.
Text
Length
The length of the input should match the given length.
Regex
This js regex will be performed on the input value.
Matches
The Input should match the given value.
Number
Is Number
Checks if the input is a number.
Greater Than
Checks if the input is greater than the given value.
Smaller Than
Checks if the input is smaller than the given value.
Equals
Checks if the input is equal to the given value.
Is Between
Checks if the input is between the given values.