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