collection:pageByPage

Will make it possible to display the elements in a collection over several pages. You specify how many objects to be shown on each page, how many pages to be displayed in the navigator.

Two attributes will be made available: "page" and "nav".

page: which will be a java.util.List of all the elements to be displayed on this page.

nav: which will be a neo.taglib.collection.PagesList of all the pages to be displayed in the navigator.

Syntax
<collection:pageByPage
   name="..."?
   navSize="..."?
   pageNumber="..."?
   pageSize="..."?
   property="..."?/>
Attributes
name

Name of bean to create the list from.

property

Will get the property from the bean specified by the name attribute. To use this attribute name must also must be defined.

navSize

Size of the navigator.

pageNumber

Number of the page to be shown.

pageSize

Size of the pages to be shown. Number of element to show on each page.