row and cell animation

Would you please answer these 3 questions related to animation :

  1. how to animate a list row when it is updated?

  2. how to animate a datatable cell when it is updated?

  3. how to change an image in a datatable cell?

Many thanks

David

My progress thus far:

I tried various methods, namely:

  1. attaching ‘onAfterAdd’ to the datatable,
  2. attaching ‘onDataUpdate’ to the datastore,
  3. using $css in the data itself,
  4. using column templates,
  5. setting the cell id manually in a column template, then using document.getElementById,
  6. etc.

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