ics:listget gets the list specified in the attribute listname and retrieves the info requested in the attribute fieldname. This information can be assigned to the variable declared in output. fieldname is the title of the field you wish to retrieve from the list. The most common fieldname will be value as this is used in a ics:listloop to assign a list object during iteration.
Other values include:
- #curRow - retrieve the current row number
- #numCols - retrieve the number of columns in the list
- #numRows - retrieve the number of rows in the list
<ics:listget listname="resultsList" fieldname="#numRows" output="resultsListSize" />
This example will return the number of items in the list.



