Magento uses Prototype as javascript library. It provides a simple way to validate html form values.
Below is an example:
<form name=”my-form” id=”my-form” method=”post”>
<label for=”firstname”>
< ?php echo $this->__(‘First name’) ?> <span>*</span></label><br />
<input id=”firstname” name=”firstname” class
=
"input-text required-entry"
/>
<label for=”lastname”>
< ?php echo $this->__(‘Last name’) ?> <span>*</span></label><br />
<input id=”lastname” name=”lastname” class
=
"input-text required-entry"
/>
</form>
<script type=”text/javascript”>
//< ![CDATA[
var customForm = new VarienForm('my-form');
//]]>
</script>
In the form above you can see each input field has its own class name and these classes will be used to validate field’s value. There are many predefined classes like that in prototype lib. I’ll show you all of them at the end of this topic.
Most important thing besides assigning class names is that little piece of JavaScript below the form. Remember to pass form id into the
new VarienForm object.
Basically, that’s it. Constructing the form this way, automatically makes your form reuse already existing validation code which is being used by the rest of the shop.
Below is a full list of validate class and its error message that I found in prototype lib.
Please select an option.
This is a required field.
Please enter a valid number in this field.
Please use numbers only in this field. please avoid spaces or other characters such as dots or commas.
Please use letters only (a-z or A-Z) in this field.
Please use only letters (a-z), numbers (0-9) or underscore(_) in this field, first character should be a letter.
Please use only letters (a-z or A-Z) or numbers (0-9) only in this field. No spaces or other characters are allowed.
Please use only letters (a-z or A-Z) or numbers (0-9) or spaces and # only in this field.
Please enter a valid phone number. For example (123) 456-7890 or 123-456-7890.
Please enter a valid phone number. For example (123) 456-7890 or 123-456-7890.
Please enter a valid fax number. For example (123) 456-7890 or 123-456-7890.
Please enter a valid date.
Please enter a valid email address. For example johndoe@domain.com.
Please use only letters (a-z or A-Z), numbers (0-9) , underscore(_) or spaces in this field.
Please enter 6 or more characters. Leading or trailing spaces will be ignored.
Please enter 7 or more characters. Password should contain both numeric and alphabetic characters.
lease make sure your passwords match.
Please enter a valid URL. http:// is required
Please enter a valid URL. For example http://www.example.com or www.example.com
Please enter a valid Identifier. For example example-page, example-page.html or anotherlevel/example-page
Please enter a valid XML-identifier. For example something_1, block5, id-4
Please enter a valid social security number. For example 123-45-6789.
Please enter a valid zip code. For example 90602 or 90602-1234.
Please use this date format: dd/mm/yyyy. For example 17/03/2006 for the 17th of March, 2006.
Please enter a valid $ amount. For example $100.00.
Please select one of the above options.
- validate-one-required-by-name
Please select one of the options.
- validate-not-negative-number
Please enter a valid number in this field.
Please select State/Province.
Please enter 6 or more characters. Leading or trailing spaces will be ignored.
- validate-greater-than-zero
Please enter a number greater than 0 in this field.
Please enter a number 0 or greater in this field.
Please enter a valid credit card number.
Credit card number doesn\’t match credit card type
Card type doesn\’t match credit card number
Incorrect credit card expiration date
Please enter a valid credit card verification number.
Please use only letters (a-z or A-Z), numbers (0-9) or underscore(_) in this field, first character should be a letter.
Please input a valid CSS-length. For example 100px or 77pt or 20em or .5ex or 50%
Maximum length exceeded.