Hello,
I Have a page in JSP that is working fine. When I changed to facelets the dataTables stopped change after a4f:commandButton events. Basically, it has a a4f:commandButton that add a line in dataTable like this:
<t:panelGroup style="BarraBotoes">
<a4j:commandButton action="#{clienteBean.incluirTelefone}" reRender="addressListTable"
styleClass="addButton" title="#{msg.addAddress}" value="#{msg.addAddress}"
oncomplete="showMsgInfo(false);"/>
</t:panelGroup>
<t:panelGroup colspan="4" id="addressListTable">
<t:dataTable id="addressList" var="tl" value="#{visit.currentObject.addressList}"
cellpadding="0" cellspacing="0" headerClass="headerGridTable"
binding="#{client.address}" width="100%">
........
</t:dataTable>
</t:panelGroup>I'm having the same problem, it seems that binded components doesn't reRender well.
Any a4j Developer or user can answer this ?