Using jQuery ajax when click on "Next" I will get list of objects (which contains list of objects internally) without converting that to json and not using any other plugin, how I can render this list to display the table similar to in struts.
Currently I am using a include jsp with only the table to be refreshed with next set of results and replacing the existing table div with new jsp. Can someone suggest any other method to do this.
List of Orders and each order has multiple items. One row represents
Order# -- Order Date -- Item# -- Item Description
1 -- Shirt
1 -- 05/21/2012 -- 2 -- Pant
3 -- Brief
If I have 100 orders per page if I display 25 Orders when I click on "NEXT" button as explained above I will get list of next 25 orders then it should display the next 25.