2 Replies Latest reply on Apr 9, 2008 8:28 PM by tom_goring

    pageflow mulitple actions

    tom_goring

      Hi,


      How in a page flow can I execute multiple actions?
      It appears I can only define 1 on a transition.



      <transition to="JoinWizardDoneStuff1">
         <action  expression="#{beanExpr}"/>
      /transition>




      But I want wire several actions together?


      <transition to="JoinWizardDoneStuff1">
         <action  expression="#{beanExpr}"/>
         <action  expression="#{beanExpr}"/>
         <action  expression="#{beanExpr}"/>
      /transition>





      Any ideas?

        • 1. Re: pageflow mulitple actions
          dipas

          works perfectly...



                  <transition to="editPage" name="apply" >
                      <action expression="#{demoServiceCompEdit.storeData}" />
                      <action expression="#{demoServiceCompEdit.editData}" />
                  </transition>
          




          buy the way, you have not defined a name for the transition... or is it the only transition in this page?

          • 2. Re: pageflow mulitple actions
            tom_goring

            I can't believe i missed that ! thanks