Validation: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(Created page with "=== Turn on Validation === === Create a Validation Module === === Set up the Validation rules === === Validate the form === === Notes and Advanced Rules ===")
 
No edit summary
Line 1: Line 1:
The Validation library is an option you can add to your project which checks if the input fields on your are valid.
If a field is invalid, a message in red appears next to the field.
Validation doesn't kick in until you ask it to validate the form. This lets the operator input data undisturbed. As fields are corrected, the error messages disappear.
The intent of this Tech Note is to get you started using the Validation library. It has many options and features beyond what is documented here. We encourage you to read the full documentation. Here are a couple of useful documents:
Official jQuery Validation site: https://jqueryvalidation.org/
The Most Indispensable jQuery Form Validation Reference Guide: http://javascript-coder.com/form-validation/jquery-form-validation-guide.phtml
=== Turn on Validation ===
=== Turn on Validation ===
[[File:Validation1]]


=== Create a Validation Module ===
=== Create a Validation Module ===

Revision as of 19:30, 28 October 2018

The Validation library is an option you can add to your project which checks if the input fields on your are valid.

If a field is invalid, a message in red appears next to the field.

Validation doesn't kick in until you ask it to validate the form. This lets the operator input data undisturbed. As fields are corrected, the error messages disappear.

The intent of this Tech Note is to get you started using the Validation library. It has many options and features beyond what is documented here. We encourage you to read the full documentation. Here are a couple of useful documents:

Official jQuery Validation site: https://jqueryvalidation.org/ The Most Indispensable jQuery Form Validation Reference Guide: http://javascript-coder.com/form-validation/jquery-form-validation-guide.phtml

Turn on Validation

File:Validation1

Create a Validation Module

Set up the Validation rules

Validate the form

Notes and Advanced Rules