9 Replies Latest reply on Aug 9, 2007 12:08 PM by msznapka

    s:link EL bug, seam-2.0.0.BETA1

    msznapka

      Hello,

      i moved my project to seam-2.0.0.BETA1, because of great new jboss-el

      PROBLEM:

      i am looping over conversation scoped array and generating links with action with integer parameter:

      <ui:repeat value="#{someArray}" var="item">
       <h:commandLink action="#{util.action(item.id)}" .../>
      </ui:repeat>
      


      where util is application scoped object:
      @Name("util")
      @Scope(APPLICATION)
      @Startup
      public class Utils {
       public String action(Integer id) {
       ...
       }
      }
      


      which works fine until i change h:commandLink to s:link, because of right onversation management

      s:link always call action with parameter 0, h:commandLink calls action with right integer

      if this is bug, please repair it, i really like new jboss-el

      Thanks!