Reputation: 2135
I have continually updating data where html table needs to be updated. Table is relatively large with 200 rows and 15 columns.Data(JSON) is fetched through XHR request and the table should be updated only for the change in the data. Any addition, update and deletion of rows should also be taken care. What's the best framework or approach to follow. I tried angularJS and it's slow in IE8.
View(HTML table) should not be redrawn for small change in a cell. Only the changes should be updated.
Thanks
Upvotes: 5
Views: 5745
Reputation: 39
Check out this table from Codyhouse: https://codyhouse.co/gem/schedule-template/ This is an amazingly styled timetable.
Hope this helps.
Upvotes: -1
Reputation: 3814
Look at the datatables.
They provide a lot of api's to play around table and very easy to use.
Upvotes: 0
Reputation:
Take a look at jTable. Pretty awesome jQuery table with AJAX support built in.
Upvotes: 2