7 Replies Latest reply on Sep 12, 2007 12:56 AM by sergeysmirnov

    a4j:support not working in rich:datatable

    jgilbert

      i have a4j:support working in an h:datatable, but i can't get it to work in a rich:datatable.

      any ideas why?

      <h:dataTable id="chargeTable" value="#{editor.charges}" var="row">
       <h:column>
       <h:outputText value="#{row.name}" />
       </h:column>
       <h:column>
       <h:selectOneMenu value="#{row.rateCode.id}">
       <f:selectItems value="#{editor.rateCodes}" />
       <a4j:support immediate="true" event="onchange" reRender="chargeTable" >
       </a4j:support>
       </h:selectOneMenu>
       </h:column>
      </h:dataTable>