0 Replies Latest reply on Jan 24, 2008 6:25 AM by jinkam

    JSF reRender failed when crossing facelets ui:define block

    jinkam

      The JSF code like follows, the a:commandLink cannot reRender a:outputPanel area with id=MainContent.
      Is there some trick with this, or This is the limitation of facelets.


      <ui:define name="sider">
      <h:form>
      <a:commandLink value="name" action="#{obj.someAction} reRender="MainContent"/>
      </h:form>
      </ui:define>

      <ui:define name="content">
      <a:outputPanel id="MainContent">
      <rich:tabPanel ...>
      ...
      </rich:tabPanel>
      </a:outputPanel>
      </ui:define>
      </ui:define>