I'm trying to update two form components via ajax without success. Here's the code (inside a first p:dataTable):
<p:ajax event="rowSelect"
listener="#{gestionCierres.selectionPeriodo}"
update=":cierreTemplateForm:tablaZonaEmpresarial :cierreTemplateForm:labelInfoPeriodo :cierreTemplateForm:tablaZonaInfo" />
The method selectionPeriodo in Controller is related with the updating of the second dataTabla (tablaZonaEmpresarial). The element tablaZonaInfo (third p:dataTable) is not being updated. I even tried to add a specific updating method for the dataTable tablaZonaInfo in the Controller method selectionPeriodo.
Please, can anybody see the solution?
Thanks in advance!!!