| |||||||
FRAMES NO FRAMES |
Use this tag as an alternative to h:dataTable
or c:forEach
, especially when you are using the jsfc
feature of Facelets. You can specify this component as the value of the jsfc
attribute, like this: <div... jsfc="ui:repeat" value="#{contacts}" var="contact">...
Tag Information | |
Tag Class | None |
TagExtraInfo Class | None |
Body Content | JSP |
Display Name | None |
Attributes | ||||
Name | Required | Request-time | Type | Description |
offset | true | false | javax.el.ValueExpression
(must evaluate to int )
| Read-write property setting the offset from the beginning of the collection from which to start the iteration. If not set, this offset is not considered and iteration will start at the beginning of the collection. |
size | true | false | javax.el.ValueExpression
(must evaluate to int )
| Read-write property setting the size of the collection to iterate. If this value is less than the actual size of the collection, a |
step | true | false | javax.el.ValueExpression
(must evaluate to int )
| Iteration will only process every step items of the collection, starting with the first one. |
value | true | false | javax.el.ValueExpression
(must evaluate to java.lang.Object )
| The name of a collection of items that this tag iterates over. The collection may be a |
var | true | false | javax.el.ValueExpression
(must evaluate to java.lang.Object )
| Name of the exported scoped variable for the current item of the iteration. This scoped variable has nested visibility. Its type depends on the object of the underlying collection |
varStatus | true | false | javax.el.ValueExpression
(must evaluate to java.lang.Object )
| Name of the exported request scoped variable for the status of the iteration. Object is a POJO with the following read-only JavaBeans properties. This scoped variable has nested visibility.
|
Variables | ||||
No Variables Defined. |
| |||||||
FRAMES NO FRAMES |