I have the following code of jsf page:
<c:forEach var="componenet" items="#{productsView.productsForm.productAttributes}">
<ui:component binding="#{componenet}" />
</c:forEach>
All what i want is binding a collection of UIComponenets objects with jsf page. (I use a primefaces). Collections of productAttributes are
org.primefaces.component.inputtext.InputText@1f753662
org.primefaces.component.selectonemenu.SelectOneMenu@18ef518c
org.primefaces.component.selectonemenu.SelectOneMenu@57f98f1b
org.primefaces.component.selectonemenu.SelectOneMenu@a74bef6
but that dosent work. It is some special tag like
<p:componenet binding="#{someUIComponenet}" />
or some other way to fix it? I WIll gratefull for help