I has been playing with YUI3 3.5pre5 DataTables and realized a big difference in implementations (from YUI2).
When using addRow(), modifyRow() and set()
, all the table is reloaded/redrawn/refreshed instead of only the elements affected.
For example when a row is added all the table is redrawn instead of only the new row (like in YUI2).
This is a real problem if you have a lot of data and everything is redrawn because of some cell updated. Or if you need to update the data every x seconds the table will be constantly refreshing making it harder to work with.
I hope I'm doing it wrong and there is way of doing it or a workaround.
Please let me know if there is a way to make the new DataTables behave correctly.
Thanks!