0

Does the Display tag JSP tag provide a way to hook into pagination events, so that you can execute your own code when the user pages the data? I couldn't work out how to do it from the docs.

Thanks in advance.

John Topley
  • 113,588
  • 46
  • 195
  • 237

1 Answers1

0

Have you looked at their external pagination and sorting?

We use it and it works quite well. Lets you implement your own paging and sorting. Using this, if you have a large data set you can offload paging/sorting to your DB server to speed things up (a lot).

Marcus Leon
  • 55,199
  • 118
  • 297
  • 429
  • Thanks. I looked into that but couldn't see any callbacks that get invoked when a page link gets clicked. – John Topley Jul 11 '09 at 14:39
  • If you just want to know when the user has clicked next/prev/page 1/etc, there will almost certainly be a HTTP parameter you can use.. – Marcus Leon Jul 11 '09 at 18:31