I use the TableKit javascript library and JSP for displaying scientific data. The size of my data sets are about 100-25000 rows and 5 columns. I would like to display the data for about 40 rows per page. The user can click the "Next" and "Previous" button to go to the next and previous page respectively. The user can go to the page directly by clicking the page number "1", "2", "3", ... button.
Apache DB database and Tomcat server are running on Windows Vista Home.
Should I implement this with TableKit javascript or JSP?
Any sample code or tutorial?
This message was edited 1 time. Last update was at by albert kao
Albert,
Definitely JSP. Or a tag library for JSP. If you handle it in JavaScript, the JSP has to load thousands of rows of data resulting in a huge, slow webpage going to the user.