Hi All!
I have two pieces of code:
part 1:
<a4j:repeat id="list" binding="#{blaBean.uiRepeat}" var="item" value="#{blaBean.materialOrders}">
<h:inputText id="amount#{item.id}" value="#{item.quantity}"/>
</a4j:repeat>
<c:forEach items="#{blaBean.materialOrders}" var="item">
<h:inputText id="amount#{item.id}" value="#{item.quantity}"/>
</c:forEach>
no. It is impossible in JSF when you use iteration components.
P.S. c:forEach is NOT a component.