tags:

views:

150

answers:

0

Hi there,

I'm using dojo dataGrid (1.2.2), just wondering if there is a way for me to update data in a give row, and reflect the change in the grid without reloading the whole grid? For example, I'd like to set the 5th row column "x" from 1 to 5 console.info(thisGrid.getItem(5).i.x); //1 thisGrid.getItem(5).x = 5; ??update the row console.info(thisGrid.getItem(5).i.x); //5 and the 5th row column "x" changed to 5 Thanks in advance!

David