1 Reply Latest reply on Sep 3, 2007 4:33 PM by nbelaevski

    a4j action or actionListener is not called from rich:dataTab

    apalvinski

      detailsBean.twoAccount.selectAllItemsChanged action listener is not called from rich:dataTable...
      but it is called from h:dataTable.
      I would appreciate any ideas on the issue. Thank you in advance!! Andrei

      <rich:dataTable border="1" value="#{detailsBean.twoAccount.items}" var="item"
       binding="#{detailsBean.twoAccount.table}" width="100%"
       id="twoAccountTable">
      ......
       <h:column id="column4">
       ... <h:selectBooleanCheckbox value="#{item.selected}"
       valueChangeListener="#{detailsBean.twoAccount.selectOneItemChanged}"
       disabled="#{item.disabled}"
       >
       <a4j:support event="onclick" immediate="true" actionListener="#{detailsBean.twoAccount.selectOneItemChanged}"
       reRender="errors,netTotal,twoAccountTotal">
       </a4j:support>
      
       </h:selectBooleanCheckbox>
       </h:column>
      ...
      
      <rich:dataTable>