Attributes |
Name | Required | Request-time | Type | Description |
page | false | false | javax.el.ValueExpression
(must evaluate to int )
| The current page number. If not given, defaults to 1. |
pageSize | false | false | javax.el.ValueExpression
(must evaluate to int )
| The number of results that will be displayed per page. If not given, defaults to 10. |
target | true | false | javax.el.ValueExpression
(must evaluate to java.lang.Object )
| An EL expression into which the paging information will be stored. The paging information is stored in a bean with the following properties: page - the current actual page number (if the requested page is past the end, it will be clamped to this valuetotalPages - the total number of pages available (0 for an empty data set)pageSize - the number of results per pagethisPageSize - the number of results on the current pagefirstPage - a boolean that is true if this is the first pagelastPage - a boolean that is true if this is the last pagefirst - the index of the first item in the collection to display
|
value | true | false | javax.el.ValueExpression
(must evaluate to java.lang.Object )
| An EL expression that contains the collection or map to be evaluated. |