1 2 Previous Next 15 Replies Latest reply on Nov 29, 2007 5:22 PM by igx89

    Programmatic arbitrary redirection inside pageflow

      I have this:

      <start-state>
       <transition to="next">
       <action expression="#{someBean.someMethod}" />
       </transition>
       </start-state>
      
       <page name="next" view-id="/next.xhtml">
       </page>
      
       <page name="message" view-id="/message.xhtml">
       </page>


      And in someBean.someMethod, I want to cause the flow to go to the "message" page instead of the "next" page. Is that possible? I've tried both Pageflow.instance().reposition("message") and FacesManager.instance().redirect("/message.xhtml"), neither with any luck.

        1 2 Previous Next