I need an input component to accept only numbers as in [0-9]. I have achieved this by server side conversion/validation:
<h:inputText ... converter="javax.faces.Integer" />
However, it still allows other characters while entering in the UI. How can I prevent that during the keypress event?
<h:inputText ... converter="javax.faces.Integer" onkeypress="...help?" />
 
     
     
    