| Author |
Scrollable sections in JSP
|
Seema Hanji
Ranch Hand
Joined: Jan 29, 2001
Posts: 37
|
|
Hi, I am trying to find a best solution for displaying results in sections on a JSP with <Previous> and <Next> functionality for each section to navigate within section. For ex: User enters a search criteria to get records for specified years . On results jsp page, results should be displayed in seperate section for each specified year. Each section should display top 5 records for the year and each section should have <Previous> and <Next> buttons. When any of these buttons pressed , previous/next set of 5 records should be displayed for that year. I think Navigating at query level in servlet may be too expensive. Holding Vector of unique keys of records for each section may also be expensive , as there can be upto 20-30 sections. Any suggessions are welcome. -Thanks in advance -SSH
|
 |
Tim Holloway
Saloon Keeper
Joined: Jun 25, 2001
Posts: 14491
|
|
|
Unless those are REALLY long keys, I wouldn't feel too guilty about keeping only 20 or 30 of them in a vector! Unless, maybe there's a thousand users all doing this at once.
|
Customer surveys are for companies who didn't pay proper attention to begin with.
|
 |
Seema Hanji
Ranch Hand
Joined: Jan 29, 2001
Posts: 37
|
|
You mean one seperate Vector for each section ? So, there can be 20-30 Vectors ?
|
 |
 |
|
|
subject: Scrollable sections in JSP
|
|
|