1 |
Validation |
Select List |
Select the type of validation you want to perform. |
2 |
Item Type |
Select List |
Define what kind of item type validation should be applied. |
3 |
Page Item(s) |
Multiple Page Items / Columns |
The page item(s) for which you want the above validation to apply. Separate multiple page items with a comma. |
4 |
Triggering Event |
Select List |
Specify the JavaScript event that will cause the validation to fire. |
5 |
Condition |
Textarea |
Optionally specify a JavaScript expression to support conditional execution of your validation. The validation will fire when the expression evaluates to true.
For example: $('#P5_COUNTRY').val() === "Belgium" |
6 |
Must Equal |
Page Item / Column |
Select the page item that you want the value to be equal to. Frequently used to validate that two password fields are equal. |
7 |
Regex |
Text |
This field allows specifying a regular expression that has to match the entered value.
For example: #[A-Fa-f0-9]{6} |
8 |
Minimum Item |
Page Item / Column |
The page item that contains the minimum value. Overrides the 'Minimum' setting if filled in. |
9 |
Maximum Item |
Page Item / Column |
The page item that contains the maximum value. Overrides the 'Maximum' setting if filled in. |
10 |
Minimum |
Text |
A fixed minimum value. Gets overridden by the 'Minimum Item' setting if filled in. |
11 |
Maximum |
Text |
A fixed maximum value. Gets overridden by the 'Maximum Item' setting if filled in. |
12 |
Form(s) |
Text |
A jQuery selector to determine the form region(s) you want to validate before the page is submitted. Use a comma to separate multiple elements.
For example: #empForm,#deptForm |
13 |
Form Submit Element(s) |
Text |
A jQuery ID selector to determine the buttons that submit the form. Use a comma to separate multiple elements.
For example: #createBtn,#saveBtn |
14 |
Error Message |
Text |
Specifying an error message overrides the default error message. Use &1, &2, &n for substitution values. |
15 |
Error Message Location |
Select List |
You can choose to show the error message before or after the input item. |