basics Of Sales Froce
Monday, 25 February 2013
Validation for Alphanumeric
<apex:inputField value="{!XXX}" onkeypress="return checkInput(this);" />
function checkInput(txt) {
if (/\W/
test
(txt.value)) {
alert("Please enter alphanumerics only");
return false;
}
return true;
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment