Would you please answer these 3 questions related to animation :
-
how to animate a list row when it is updated?
-
how to animate a datatable cell when it is updated?
-
how to change an image in a datatable cell?
Many thanks
David
Would you please answer these 3 questions related to animation :
how to animate a list row when it is updated?
how to animate a datatable cell when it is updated?
how to change an image in a datatable cell?
Many thanks
David
My progress thus far:
I tried various methods, namely:
The one that worked best for me was #2,
table.data.attachEvent('onDataUpdate', function (id, obj) {
table.addCellCss(id, column_name, css_name);
setTimeout(function () {
table.removeCellCss(id, column_name, css_name);
}, 1000);
}
(1) The only view that supports animation is multiview. You can place it in the necessary cell of layout.
(2) There is no cell level animation