Why display tag pagination doesn’t use partial list?

You have to use external pagination feature. First, specify in html tag that you’re using external pagination. And create an object implements org.displaytag.pagination.PaginatedList. Finally, you have to implement the DAO which makes actually query for 15 rows only and returns PaginatedList. 1) Your jsp will look like this <display:table name=”command” sort=”external” partialList=”true” size=”${command.fullListSize}” pagesize=”${command.objectsPerPage}”> <display:column … Read more