2 Replies Latest reply on Apr 15, 2008 12:56 PM by sergeysmirnov

    rerendering <h:form> which contains <h:commandLink>

      Hi,

      I reduced my problem to the following code snippet:


      <h:form id="test1">
      <a4j:commandButton value="Info" reRender="test2" />
      </h:form>

      <h:form id="test2">
      <h:outputText value="#{timeBean.time}" />
      <h:commandLink value="..." action="..." />
      </h:form>


      As you can see I use two different forms. When you click on the button in the form "test1", the form "test2" should become reRenderd, but this doesn't happen.
      The problem is the <h:commandLink > component in the second form. If you change it into an <a4j:commandLink> everything works fine.

      I tried it with Firefox 3.0 Beta 5, Konquerer and the IE7 but the effect stays the same, The strange thing is, that this effect does not occur with firefox 2.0.0.12

      I'm using RF 3.2.0, Seam, Facelets and the JSF-RI

      Any idea?