Phone Number Field Validation
From SmartWiki
Revision as of 12:38, 24 June 2013 by Arthur Lathrop (talk | contribs)
Validating Phone Number Custom Fields
Custom validation and format for phone number custom fields.
The following functions are available to apply custom validation and format for phone number fields:
- Javascript Validation - isPhoneStr(@value@,'XXX-XXX-XXXX')
- HTML Tag - onchange="this.value=convertPhoneStr(this.value,'XXX-XXX-XXXX')"
Multiple validations can be used by using the logical OR operator (i.e. ||) -
isPhoneStr(@value@,'XXX-XXX-XXXX') || isPhoneStr(@value@,'X-XXX-XXX-XXXX')