Hi All,
I have a textbox like below
<h:inputText value="#{bean.strQuantite}">
<a4j:support
actionListener="#{tabacListCommandeAltadisDetailBean.actionListenerQuantity}"
event="onchange"
/>
</h:inputText>
I input some value into the textbox above and keep the caret inside the textbox. After that, when I continue to click a other button, the event onchange of the input text above is fired.
I want to when clicking the button, the click event is fired before. Can anyone help me to solve this problem ?