2 Replies Latest reply on Jun 25, 2009 10:13 AM by wirichuser

    a4j:commandButton Not Invoking the Backing Bean Method

      Hi Every One,

      I was working on a Modal Panel which utilizes rich:listShuttle component with a4j:commandButton. The idea is when you click the button the values in the target will be updated in the database.

      But the problem is when i clicked that command button, the action property method never invoked. If i put the same command button with the action, without the list:Shuttle component, the button is working.

      Environment:

      Richfaces 3.1.5 GA
      JSF 1.1
      RAD 7.0
      Websphere 6.1

      Below i pasted the snippet of my code:

      manageResource.updateResources this method never invoked by that button.

      <h:panelGroup>
      <rich:listShuttle var="resource" fastMoveControlsVisible="false" fastOrderControlsVisible="false"
      orderControlsVisible="false" sourceListWidth="220" targetListWidth="220"
      sourceValue="#{resourceContext.availableResources}" targetValue="#{resourceContext.activeResources}"
      converter="#{resourceConverter}">
      <f:facet name="sourceCaption">Available Resources</f:facet>
      <f:facet name="targetCaption">Assigned Resources</f:facet>
      <h:column>
      #{resource.name}
      </h:column>
      </rich:listShuttle>
      <a4j:commandButton id="updateButton" event="onclick" value="Update" styleClass="button"
      action="#{manageResource.updateResources}" reRender="assignResourceForm, businessUnitSelectForm" />
      </h:panelGroup>
      


      Thanks in Advance