Are you using external pagination or are you letting the displaytag
chunk everything? If you're letting displaytag do the chunking, you
might change to use external paging.
http://displaytag.sourceforge.net/11/tut_externalSortAndPage.html
Matt
On Dec 12, 2007, at 1:42 PM, John Kwon wrote:
I have a simple JSP (this is appfuse 2.0, spring mvc) that has a
displaytag showing 12 rows and four columns.
The users usually get 6 to 8 pages (the list in displaytag makes
those) of data.
The list is an arraylist of beans that each have four attributes.
No sorting is going on. But, the list is a random subset from an
even larger list in the database.
We've noticed that the paging works fine for a while, and then we
notice that the occasional user (we have about 50 concurrent users)
will have the Next freeze up (the pagination controls on the
displaytag no longer respond). Sometimes, it appears to respond,
but the tag stays on page 1 - with new or scrambled data.
Has anyone seen anything like this? I am thinking of disabling the
highlighting javascript because I think it may be to blame.