3 Replies Latest reply on Jun 16, 2010 2:07 AM by harut

    reRender not working

      Hi

       

      I am a beginner and trying to understand how reRender works.

       

      I have found a description on http://roneiv.wordpress.com/2008/08/07/ajax-rerendering-how-to-rerender-part-of-your-page-in-myfaces-using-richfaces/.

      This is the central piece:

       

      <h:inputText  id="myInput" value="#{myBean.myProperty}">
              <a4j:support event="onkeyup" reRender="outText"></a4j:support>
      </h:inputText>
          
      <h:outputText id="outText" value="#{myBean.myProperty}"></h:outputText>

       

      Unfortunately it doesn't work for me: When I enter some text in myInput the outText won't get rendered with that text. Anyone has an idea

      what the reason could be?