Efficient real time HTML table

Multi tool use
Efficient real time HTML table
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
200 rows doesn't sound that huge…
– Bergi
May 16 '13 at 15:19
3 Answers
3
Take a look at jTable. Pretty awesome jQuery table with AJAX support built in.
http://www.jtable.org
Why was this down voted?
– Phillip Berger
May 16 '13 at 14:57
same here ...???
– NullPointerException
May 16 '13 at 15:00
@NullPointerException: I up voted your answer.
– Phillip Berger
May 16 '13 at 15:02
Look at the datatables.
They provide a lot of api's to play around table and very easy to use.
Check out this table from Codyhouse:
https://codyhouse.co/gem/schedule-template/
This is an amazingly styled timetable.
Hope this helps.
Why was it downvoted?
– Pol
Jul 3 at 8:56
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
html5 websocket might help with the data transfer
– Simon
May 16 '13 at 14:47