2 Replies Latest reply on Dec 5, 2006 8:06 AM by gavin.king

    Multiple page actions per single view-id?

    zzzz8

      I'd like to invoke two or more page actions for the same view-id - however, that doesn't seem to be possible. Here's an example:

      <page view-id="/pages/status/*"
       action="#{connection.getFirstStatus }" />
      
      <page view-id="/pages/status/*"
       action="#{connection.getSecondStatus}" />


      Is this intentional? Only one of the two actions seem to be called. I'd like to do this because it would allow me to put a lot of the page actions (i.e. methods that are called) into one class and allow for reuse.