1 Reply Latest reply on Mar 9, 2006 1:44 PM by emsa

    commandLink and several Seam components.

    emsa

      I'm trying to post a commandLink with two params:

      <h:commandLink action="#{B.select}" value="Click">
       <f:param name="type" value="ZZZ" />
       <f:param name="index" value="0" />
      </h:commandLink>
      


      'type' is a @RequestParameter in component A
      'index' is a @RequestParamater in component B
      and A is injected into B.

      When clicking - ZZZ gets injected into A but the action in B is never called.
      It might be a bit stupid to have the diffrent data in A and B but shouldn't this work?