Attributes |
Name | Required | Request-time | Type | Description |
items | true | true | java.lang.Iterable |
An Iterable to iterate over
|
limit | false | true | int | End the iteration after this many items have been looped |
scope | false | false | java.lang.String | Scope of the variable (i.e. page, request, session, or application) |
skip | false | true | int | Skip over this many items before starting to loop |
status | false | false | java.lang.String |
Sets the specified variable name to a JSONObject containing
the following loop information:
index : the index of the item in the stream
count : the number of items looped through so far, not including skipped items
first : true if this is the first record in the Iterable
last : true if this is the last record in the Iterable
|
var | true | false | java.lang.String | Variable to assign the active item to |