I use JSF and I have 2 input texts on the page.
<h:inputText id="xxx" value="#{file.xxx}" maxlength="12" >
<a4j:support event="onchange" reRender="datePanel1"
onchange="validateXXX();"
oncomplete="process();"
/>
</h:inputText>
<h:inputText id="yyy" value="#{file.yyy}" maxlength="12" >
<a4j:support event="onchange" reRender="datePanel1"
onchange="validateYYY();"
oncomplete="process();"
/>
</h:inputText>
When any value is changed, the pair of values should be validated. If validation fails the other value for input text can be updated automatically. Oncomplete event is used for outputting status messages on the page and can not be removed. The problem is when I TAB from the first input text to the second one and the value of the second input text is changed after "validation" of the first input text, focus disappears form the second input text. How can I prevent from focus disappearing, but still using a4j:support?