2 Replies Latest reply on Jul 30, 2011 6:59 AM by bcn

    order of a4j:param assignTo execution guaranteed?

    bcn

      When you have several a4j:param tags in a command link like below, is the order of execution of the assignTo methods guaranteed be the same as the order of the definition of the tags? I can't find any documentation about this.

       

      <a4j:commandLink render="editGrid" execute="@this" oncomplete="#{rich:component('editPane')}.show()">

           <h:graphicImage value="/images/edit.gif" alt="#{msg.Edit}" title="#{msg.Edit}" />

           <a4j:param value="#{itEstab.index}" name="estabIndex" assignTo="#{bean.currentEstabIndex}" />

           <a4j:param value="#{itProm.index}" name="promIndex" assignTo="#{bean.currentPromIndex}" />

           <a4j:param value="#{item.estabId}" name="item" assignTo="#{bean.editedEstabId}" />

      </a4j:commandLink>

       

      The background is that I rely in the last method on that the first methods have been called already.

      RichFaces 4.

       

      Thanks