[jboss-user] [JBoss Seam] - Re: Starting arbitrary jPDL pageflows from a

pete.muir@jboss.org do-not-reply at jboss.com
Tue Aug 14 16:36:03 EDT 2007


Currently supported, you could do this (which helps a bit):

<page view-id="/controller.xhtml">
  |    <navigation evaluate="#{param.flow}">
  |       <rule if-outcome="PF1">
  |           <redirect view-id="/page1.xhtml" />
  |       </rule>
  |       <rule if-outcome="PF2">
  |          <redirect view-id="/page1.xhtml" />
  |       </rule>
  |       <rule if-outcome="PF3">
  |          <redirect view-id="/page4.xhtml" />
  |       </rule>
  | </navigation>
  | </page>

or

<page view-id="/controller.xhtml">
  |    <navigation>
  |       <rule if="#{param.flow eq 'PF1'}">
  |          <redirect view-id="/page1.xhtml" />
  |       </rule>
  |       ...
  |    </navigation>
  | </page>

Will look at the rest later.

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074180#4074180

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4074180



More information about the jboss-user mailing list