I have a panelGrid with multiple rows. Some rows are generated with c:forEach since ui:repeat, p:dataTable and p:dataList wont' render ( ui:repeat JSF 2.0 cannot render iterate p:row primefaces) .
My aim is to update the rows which are generated in the iteration (and vary in size + content after the update), but I have no component with an id I could refer to. And no, I can't use @form.
<p:commandButton value="Update" action="#{someBean.someAction}" process="someThing" update=" ??? ">
<p:panelGrid>
<p:row>
...
</p:row>
<c:forEach var="projectDto" items="#{someBean.someDtos}" varStatus="i">
<p:row>
...
</p:row>
</c:forEach>
</p:panelGrid>
Is there way to achieve this? Maybe some kind of dummy-component wraped around the iteration?
Jonny
P.S.: I asked this already on the Primefaces forum ( http://forum.primefaces.org/viewtopic.php?f=3&t=22999). The answer (thanks jordandenison) was really "proprietary" and nobody (including me in an half a year) would understand what that was all about. So maybe there's another way.