2 Replies Latest reply on Mar 4, 2011 9:45 AM by bossy

    Unsuccessful form reRender with using of a4j:support (after onblur is fired)

    logan
      Hy!
      I'd like to reRender a form with an a4j:support+h:inputText, but it doesn't work after a4j:support onblur event fired (with byPassUpdates="true"), without onblur firing It works.
      So if I press the 'initializeInputTextField' button the h:inputText is not reRendered if the onblur event fired.

      Thank you for your help!


      <h:form id="myForm"  >
              <a4j:queue ignoreDupResponses="true"/>      
              <a4j:commandButton value="initializeInputTextField" reRender="myForm" ajaxSingle="true" immediate="true"/>
              <h:inputText  value="#{bean.String}" >
                       <a4j:support  event="onblur" ajaxSingle="true" limitToList="true" bypassUpdates="true" reRender="something"/>
                      <s:validate />              
               </h:inputText>         
               <s:div id="something">something<s:div>
      </h:form>