Form:
Select the form you want validate the fields
First line message:
When some fields are not valid display a Javascript alert with this message in the first line and the fields error message in the line after.
Required:
If checked the field must not be empty
Any:
The validator accept any type of data including non alphanumeric char
Alphanumeric:
Only alphabetic char from A to Z and numeric char from 0 to 9.
The validation is case insensitive, accept a to z and also A to Z
Alphabetic:
Only alphabetic char from A to Z
The validation is case insensitive, accept a to z and also A to Z
Integer / Float:
Integer accept only numeric value without decimal value
Float accept only numeric value with or without decimal value, the decimal separator char is the point like 123.78
You can also define a minimun and a maximun value for the field and a negative or not negative value, to define a negative value you must put a - before the value.
Acceptable:
Unacceptable:
A list of char that will be accepted or not.
RegExp:
You can define your own regular expression validator and the flag type.
This behavios has a regular expression library where you can define your Regular Expression and save them for use in all your form validation.
To see more about regular expression see this page:
RegularExpression
Flag
Description
g
global search, this will search the entire field (string of characters) and display your error message, if it does NOT find a matching pattern within the field
i
ignore case, this will ignore the case (upper or lowercase) and display your error message, if it does NOT find a matching pattern within the field
gi
global search, ignore case, will search the entire field (string of characters), ignoring the case and will display your error message, if it does NOT find a matching pattern within the field
g-rev
global search, this will search the entire field (string of characters) and display your error message, if it does find a matching pattern with the field
i-rev
ignore case, this will ignore the case (upper or lowercase) and display your error message, if it does find a matching pattern with the field
gi-rev
global, ignore case, will search the entire field (string of characters) and ignore the case, and display your error message, if it does find a matching pattern within the field
rev
Display your error message if it does find a matching pattern within the field
This button open the regular expression library where you can define your Regular Expression and save them for use in all your form validation or modify the predefined pattern.
The library contain a list of predefined regular expression pattern that you can also modify.
In this panel you can also find a test button and a "Text to validate" field, you can create your regular expression, type in the "Text to validate" field a text and with the button Test verify if the regular expression recognize the text like you need.
E-Mail:
Validate an e-mail account
Date:
Validate a date in the format you select
Time:
Validate a time in the format you select
Must be equal to:
This validate 2 field if the content is the same, can be used to validate a password repeat field.
Field length from to:
You can define a minimum and a maximun length for a field.
The minimun length can be used in password field where you need a minimun char length.
Eval Js:
With this feature you can create your own Javascript validation function and pass the name to our extension. The extension will eval your function and return the value your function return. The name of your function can contain only letter and number. The extension will call your function and pass the name of the text fied.
This is an example:
<script language=javascript>
function yourOwnFunction(name){
//Here your validation code
//name is the name of the field you must validate
//the name is passed from out extension
//Here your validation code
}
</script>
This function must return a true or a false
This is what you must write in the fied in the extension panel:
Error message:
The message display if the field is not validated.