Hi,
What's the Strut2 recommendation for Table Pagination (AKA Paging)?
We're showing a large table (say, 500 records) and need to break it down to
25 pages (20 records per page).
So we need a widget where users can select a page:
page: << 1 2 3 4 5 .. 24 25 >>
And then a table showing this page - e.g. page 2 is records 26-50:
| record No. | Date | price
------------------------------------
26. ....
27. ...
... ...
50. ...
Does struts2 have tags (or design recommendations) for this, either simple or
ajax-based?
Note we know how to page on the Model side (oracle ROWNUM), we're just not
sure how to integrate it with *Struts* UI.
Thanks very much,
Sollie.