 |

- This box must be checked - The field will error if the checkbox is not checked.

- Checkbox must be checked - The field will error if the checkbox is NOT checked.
- At least one box must be checked - The field will error if at least one of a group of checkboxes is NOT checked.
- This box must be checked - The field will error if a chosen checkbox within a group is NOT checked.
- These boxes must be checked - The field will error if the chosen checkboxes are NOT checked.
Important note: In order to use the Checkbox Group feature, you must insert Validate Forms proprietary tag VFGROUP.
For example:
<input type="checkbox" vfgroup="age" name="baby">Baby <input type="checkbox" vfgroup="age" name="child">Child
<input type="checkbox" vfgroup="age" name="teen">Teenager <input type="checkbox" vfgroup="age" name="adult">Adult
Doing this will ensure that Validate Form understands that you wish to gain access to the Form Checks that involve Group Checkbox Validation.
Important Note: To determine which of the checkboxes have been checked with a Server Side Scripting Technology such as ASP or CFM, you must check the length property of the Form Object.
For example, using ASP your code would look something like this
If Len(Request.Form("baby")) > 0 Then
' The user has selected baby
End If
If Len(Request.Form("child")) > 0 Then
' The user has selected child
End If
If Len(Request.Form("teen")) > 0 Then
' The user has selected teen
End If
If Len(Request.Form("adult")) > 0 Then
' The user has selected adult
End If

- Radio must be checked - The field will error if the radio button is not checked.

- At least one radio must be checked - The field will error if at least one of the radio buttons is not checked.

- Required - The field will error if the user does not enter any data into the field. "N" or Not Required is the opposite of "R" Required. Use the "Not Required" feature to allow for an empty field. However if the field is Not empty i.e. the user has entered something into the field, then and only then, will a check be performed on the field.
|
|

|
 |
 |
| Click here to purchase your copy now! |
|
|
 |
295 Users have rated it with an average rating of 7.5 out of 10
         
|
"Already got the Extension?" - Then please tell others what you think by rating it!
|
|
|
|