5 Replies Latest reply on Sep 23, 2007 9:27 AM by patrickr

    JPDL: Multiple actions on transition or page?

    patrickr

      Hi,

      according to the pageflow-2.0 schema this is valid:

      <start-page name="Address" view-id="/pages/checkout/address.xhtml">
      
       <action expression="#{flowUtil.test}" />
       <action expression="#{flowUtil.test2}" />
      
       <transition name="next" to="End">
       <action expression="#{action1.test}" />
       <action expression="#{action2.test2}" />
       </transition>
      
      </start-page>

      However, only the first action is called. Is this a bug? I would love to chain multiple actions, because then I could plug in more actions without any dependencies.