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?

link|improve this question

50% accept rate
feedback

1 Answer

Try using javascript to refocus the element on the oncomplete

e.g.

<h:inputText id="xxx" value="#{file.xxx}" maxlength="12" >
    <a4j:support event="onchange" reRender="datePanel1" 
      onchange="validateXXX();"  
      oncomplete="process();document.getElementById('xxx').focus();"
        />
</h:inputText> 

<h:inputText id="yyy" value="#{file.yyy}" maxlength="12" >
    <a4j:support event="onchange" reRender="datePanel1" 
      onchange="validateYYY();"  
      oncomplete="process();document.getElementById('yyy').focus();"
        />
</h:inputText> 

This should hopefully refocus the elements when the oncomplete handler is called.....

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.