1 Reply Latest reply on May 17, 2007 6:44 AM by ilya_shaikovsky

    ModalPanel+ templaiting

    furic

      Hi
      Currently i'm using tiles templaiting mechanism for all my pages.
      In the main pages i have tables with links, click on each link opens standart windowModalDialog (it's layout defined in tiles definition file).
      I want to migrate to rich:modalPanel, but still have templaiting for all opened panels.
      I can think about something like that :

      <rich:modalPanel>
      <jsp:include page="/included.jsf">
       <jsp:param name="page" value="myPage1.jsf">
      </jsp:include>
      </rich:modalPanel>
      

      included.jsf:
      <jsf:forward page="<%=paramValues['name']%>"/>
      

      Is it feasible with modalPanel ? Can you sugggest better solution?
      Thanks