| Attributes |
| Name | Required | Request-time | Type | Description |
| pageId | false | true | java.lang.String | the Page ID of the page which contains the desired container. |
| pageLevel | false | true | java.lang.String | the offset from the root page, specifying the number of levels to go down in the tree. The level is therefore independent of the current page, for this use the relativeContainerList tag. For example, if we have the following path page1 -> page2 -> page3 (current page) then the levels correspond to: level 0 = Exception returned (doesn't exist) level 1 = page1 (root page ID) level 2 = page2 level 3 = page3 level 4 = Exception returned (doesn't exist) |
| name | true | true | java.lang.String | the name of the list. This is an identifier that must be unique within the current parent object (page or containerlist) CHECK [To Be Completed] , Usually it is good practice to avoid using spaces in this name, which makes manipulation easier in general. See content:containerList. |
| size | false | true | java.lang.String | the number of elements in the list. Returns the size of the container list. This now returns only the size that has been loaded in memory, as opposed to the full -i.e. real- size of the list set in the database. To get the real full size of data set, use @see JahiaContainerList#getFullSize(). The reason for this is due to the introduction of scrollable container lists which load only the set for the view. |
| windowSize | false | true | java.lang.String | The pagination window size i.e. the number of objects on each page. It is possible to allow the user to change the number of items per page used in the Pagination of a given Container List. Say, if a container list contains a 1000 containers/fields, you'll want to spread this list across mutilple pages. If you don't, then enjoy the wait... The default value is -1 meaning the functionality is deactivated. This value can be set in during the declaration of the container list with the @see declareContainerList#windowSize |
| windowOffset | false | true | java.lang.String | The pagination window offset. This attribute dictates the initial number of pages into the paginated list for this containerList. The default value is 0. Note that if windowOffset is superior to the number of elements in the container list, it defaults back to a zero value. |
| maxSize | false | true | java.lang.String | The max size. This attribute can be used to set the maximum size of the container list ( the max containers to load ). The default value is Integer.MAX_VALUE |