1 2 Previous Next 18 Replies Latest reply on Nov 30, 2007 6:52 AM by gazadonf Go to original post
      • 15. Re: Problems with links in pageflow pages based on templates
        gazadonf

        A little precision:

        At the first strike, it doesn't work because i leave propagation=none in my s:link


        on the link to call (start) my sub-pageflow.

        Another precision:

        if you have a main pageflow and a sub pageflow, you have to declare the sub pageflow before your main pageflow in your component.xml overwise the application do not start correctly.

        like this:
         <bpm:pageflow-definitions>
         <value>menu.jpdl.xml</value> <!-- sub pageflow -->
         <value>monPageflow.jpdl.xml</value> <!-- main pageflow -->
         </bpm:pageflow-definitions>
        


        • 16. Re: Problems with links in pageflow pages based on templates
          gazadonf

           

          "chawax" wrote:
          I use Seam 2.0.0.GA too


          I saw in your first post you have CR1

          I work with CR3.

          Did you change it since last release?

          • 17. Re: Problems with links in pageflow pages based on templates
            chawax

            I could make it work adding propagation="none" to my link :)

            Something this way :

            <s:link action="#{navigationT4.retourAccueil}" value="Accueil" propagation="none" />


            Thanks a lot for your help ;)
            Ou plutôt merci beaucoup pour ton aide lol

            • 18. Re: Problems with links in pageflow pages based on templates
              gazadonf

              De rien.

              Par contre pour sortir d'un sub pageflow et revenir a la page appelante du main, propagation="none" ne fonctionne pas => reste sur la meme page avec terminaison de ladite conversation.

              En clair la navigation est terminee, mais tu restes sur la page de ton lien.

              Dans ce cas, propagation="end" est a privilegier (ca fonctionne).


              Translation:
              in a sub-pageflow, to come back to the main pageflow with a s:link, propagation="none" doesn't work, i.e. doesn't bring back to the main pageflow but end the conversation.
              propagation="end" does.

              1 2 Previous Next