- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
For alphabetical characters only, use the following javascript on the validate event of the text field
var r = new RegExp("^[a-z]*$");
var result = r.test(this.rawValue);
if (result == true)
true;
else
false;
Also, set the Validation Script Message properties in the Object->Value Tab
Views
Replies
0 Likes
Total Likes