Consider a dummy case:
<h:form id="wrapperForm">
<h:panelGroup id="rowsContainer">
<h:dataTable id="rowsTable" value="#{bean.rows}" var="row" >
<h:column>
<h:commandButton value="Click me to update (#{component.parent.parent.parent.clientId})">
<f:ajax render=":#{component.parent.parent.parent.clientId}" />
</h:commandButton>
</h:column>
</h:dataTable>
</h:panelGroup>
</h:form>
On button click, the id=rowsContainer gets successfully updated as it should.
However, if I add ui:repeat there, it does not work anymore:
<h:form id="wrapperForm">
<ui:repeat id="blocksRepeat" var="block" value="#{bean.blocks}">
<h:panelGroup id="rowsWrapper">
<h:dataTable id="rowsTable" value="#{block.rows}" var="row" >
<h:column>
<h:commandButton value="Click me 2 update (#{component.parent.parent.parent.clientId})">
<f:ajax render=":#{component.parent.parent.parent.clientId}" />
</h:commandButton>
</h:column>
</h:dataTable>
</h:panelGroup>
</ui:repeat>
</h:form>
Instead, this gets:
<f:ajax> contains an unknown id ':wrapperForm:blocksRepeat:0:rowsWrapper' - cannot locate it in the context of the component j_idt363
However, that component is really there with that ID, so the EL should be ok. Somehow the ui:repeat breaks the case. Is it possibly trying to evaluate the EL before the actual loop?
How do you refer to the rowsWrapper element from within the dataTable?
Note: I recently asked about odd dataTable naming within ui:repeat, which turned out to be a bug. This issue should not be related to that, however, as I am wrapping the dataTable within a panelGroup as suggested here.
ui:repeatagain ~sic. It would be nice if the JSF guys introduced a fullworthyUIDatacomponent which is similar to good ol' Tomahawk'st:dataListwhich allows output markup control as<ul>,<ol>or nothing. – BalusC Oct 7 '10 at 14:56ui:repeatisn't a fullworthyUIDatacomponent and behaves differently as oppsed to e.g.HtmlDataTable. If you replaceui:repeatbyh:dataTableit will work (but the final HTML is is ugly, yes). – BalusC Oct 8 '10 at 13:26ui:repeatwithh:dataTablereally solved the situation (believe it does so in this case as well). However, in some cases simply updating to Mojarra 2.0.3 helped, I actually opened up a question that should summarize the whole hassle around ui:repeat (not to duplicate information but to help other desperate souls find the cause when in the same situation). See stackoverflow.com/questions/3890862/… It seems they fixed at least something for Mojarra 2.0.3 – Tuukka Mustonen Oct 8 '10 at 13:43