


Hi,
How to validate the user entered data whether it is alphabetic or numeric...
Other than alphabets,an alert should be shown to the user.
Regards,
Manjula
Views
Replies
Sign in to like this content
Total Likes
You can use numeric fields to force numeric data capture only. Alternatively, you can use regular expressions to force numeric or alpha data capture on text fields. The attached uses the following regular expressions:
// form1.page1.tf-numeric-only::exit - (JavaScript, client)
if (!(this.isNull)) {
var tf = this.rawValue;
// \D to match any character NOT in the range 0 - 9
var regExp = /\D/;
if (regExp.test(tf)) {
xfa.host.messageBox("The field must be numeric.","Validation",1);
}
}
// form1.page1.tf-alpha-only::exit - (JavaScript, client)
if (!(this.isNull)) {
var tf = this.rawValue;
// \d to match any character in the range 0 - 9
var regExp = /\d/;
if (regExp.test(tf)) {
xfa.host.messageBox("The field must be alpha.","Validation",1);
}
}
Steve
Views
Replies
Total Likes
Thanks
Views
Replies
Sign in to like this content
Total Likes