How to repeat output of some content in JSF using only standard tags (ui:, h: etc) ? In other words - how to do equivalent to PHP code below in JSF ? I immediat
Since it needs a collection, you can make a collection (containing as much elements as the number of time you want to output the divs) in the backing bean:
public class MyBean {
private List list = new ArrayList
and then:
content
..which would output as many divs as the size of the list property.