views:

2449

answers:

2

I'm looking open source pagination component, where I could just give list of items to method that would make pagination to my jsp page. I would get items from database by page parameter and pagination method would do the rest. Is there any good componenets for that ?

+1  A: 

Have a look at displayTag. It can build paginated tables given a list of objects.

Phill Sacre
+1  A: 

And not just that, displayTag also supports the Valuelist pattern if you don't want displayTag to retrieve the full list everytime before doing pagination.

jitter
A very important bit, indeed. Thanks for pointing it out. +1
Adeel Ansari