1 Reply Latest reply on Apr 15, 2008 4:02 AM by melkior

    componentControl does not transfert param in 3.2.0

    melkior

      Hi,

      I have a problem with the componentControl and the contextMenu witch is attached to.

      The componentControl does not transfer the param to the contextMenu so i recup null values in my contextMenu ! (See the code lowest)

      It work with RF 3.1.4 but not with the 3.2.0

      <rich:componentControl event="onclick" for="menu1" operation="show" rendered="#{ligne.zoneA.rendererMenu}">
       <f:param value="#{ligne.zoneA.dropValue}" name="zone"/>
       <f:param value="#{ligne.id}" name="ligne"/>
       </rich:componentControl>




      <rich:contextMenu attached="false" id="menu1" submitMode="ajax">
      
       <% /* Supprimer */ %>
       <rich:menuItem value="Supprimer" actionListener="#{craBean.processMenu}" reRender="ZoneDrop1">
       <a4j:actionparam name="delete" assignTo="#{craBean.paramMenu}" value="{zone}"/>
       <a4j:actionparam name="numeroLigne" assignTo="#{craBean.idLine}" value="{ligne}"/>
       </rich:menuItem>
      
      ...
      
      </rich:contextMenu>
      


      Thanks.