I have a component I want called on each keyup event by the user.
The problem is I do not want to call it when the user first tabs into the text box (onfocus).
How can I get around this in JSF/Richfaces? Do I need to combine some Javascript to get around it?
<h:inputText id="limit1" value="#{bean.purchaseTypeItem.subPurchaseLimit}" immediate="true">
<f:converter converterId="javax.faces.BigDecimal" />
<f:attribute name="fieldRef" value="Purchase Limit1" />
<a4j:support event="onkeyup" ajaxSingle="true" immediate="true" requestDelay="200"
actionListener="#{bean.validateAmount}" ignoreDupResponses="true" reRender="main" />
Thanks