13 Replies Latest reply on Mar 17, 2011 5:34 AM by ilya_shaikovsky

    What to use instead of <a4j:include>?

    rjevans2000

      Hi,

       

      I am trying to use <rich:popupPanel> to achieve a wizard behaviour within the modal popup. All the examples I can find on the internet look similar to the following:

       

      <rich:popupPanel domElementAttachment="form" autosized="true">


            <f:facet name="header">
                    <h:outputText value="Test" />
                </f:facet>
       
                <f:facet name="controls">
                    <h:commandLink value="Close"
                    style="cursor:pointer"
                    onclick="Richfaces.hideModalPanel('panel1')" />
                </f:facet>
               
        <a4j:include binding="#{someBean.include}" viewId="/view/include1.xhtml"/>
      </rich:popupPanel>

       

      However, since I am using richfaces 4 M5, the <a4j:include> component no longer exists. What can I use as a replacement in order to achieve the same 'wizard' behaviour?

       

      Thanks