Attributes |
Name | Required | Request-time | Type | Description |
var | false | false | java.lang.String | Name of the exported scoped variable for the current item of the iteration. This scoped variable has nested visibility. Its type depends on the result of the XPath expression in the select attribute. |
select | true | false | java.lang.String | XPath expression to be evaluated. |
begin | false | true | int | Iteration begins at the item located at the specified index. First item of the collection has index 0. |
end | false | true | int | Iteration ends at the item located at the specified index (inclusive). |
step | false | true | int | Iteration will only process every step items of the collection, starting with the first one. |
varStatus | false | false | java.lang.String | Name of the exported scoped variable for the status of the iteration. Object exported is of type javax.servlet.jsp.jstl.core.LoopTagStatus. This scoped variable has nested visibility. |