Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

You may want to include validation on required fields. This will ensure that when user are interacting with the form they are providing the correct information and also this will cut down on invalid submissions.

...

  • Text
  • EMail
  • Money
  • Phone
  • Quantity
  • Number

Image RemovedImage Added

Example: Email Address Validation

...

  • While sitting on the field, "Email Address, Star, Edit Required."
  • Upon leaving the Field, "Alert, Must be valid email address."
  • Upon encountering their invalid entry,"Invalid entry", and then the text will be read that is in the input.

Image RemovedImage Added

  1. Create a text field and give it a Label of Email Address
    Image RemovedImage Added
  2. In the properties menu on the left fill in the following areas:
    1. Pattern

      Code Block
      [a-zA-Z0-9\-_][a-zA-Z0-9\-\+_]*(\.[a-zA-Z0-9\-\+_]+)*@([a-zA-Z0-9\-_]+\.)+[a-zA-Z]{2,6}


    2. Error Message
    3. Required - Checkbox
      Image Removed

  3. Save your form and test it

...

The following examples were found on frevvo's documetation site linked at the top of this page.

US Zip Code Pattern

A pattern that restricts a text control to only allow strings formatted as a US zip code: ##### or #####-####:

...