I have a primefaces "grid panel" template and i'm filling it's columns from database via java classes. And i've to show lots of clones of that panel but surely they full with different info. For displaying all of them i am using "ui repeat" tag and it is drawing those panels repeatedly anyway it's something like that;
<ui:repeat value="#{PanelController.gridPanelList}" var="gridPanel">
<p:panelGrid style="........>
<f:facet name="header">
<p:row>
<p:column colspan="9">#{gridPanel.Name}</p:column>
</p:row>
.........................
So this seems successful implementation for drawing ALL OF THE PANELS but i need to show for example 5 of em and then five more i mean i need infinite scrolling like facebook or twitter.
PrimeFaces 3.4 Tomcat 7