10. Facelets UI Tag Reference
Contents > Facelets UI Tag Reference > ui:repeat
ui:repeat |
|
The UI Repeat tag is used to iterate over a collection of objects exposed to the JSF page as a value-binding EL expression. It is intended as a replacement for the c:forEach tag from the JSTL Core tag library. You can also use this tag with the "jsfc" feature in Facelets.
|
Tag Attributes
| value |
String |
| Required |
| The value attribute specifies the value-binding EL expression that resolves to a List of objects to be iterated over. |
| var |
String |
| Required |
| The var attribute specifies the literal name of the variable used to iterate over the collection. |
|