getValue from grid set using InnerHTML

Hi,

i have set the value of a grid using innerHTML i.e

grid.cells(id, grid.getColIndexById("QUANTITY")).cell.innerHTML = 0;

But am trying to get that value using getValue , it’s not getting i.e

grid.cells(id, grid.getColIndexById("QUANTITY")).getValue()

Please help.

Ndegwer | Kenya

Pleas,e try to set the new value using the setValue() method:
grid.cells(id, grid.getColIndexById(“QUANTITY”)).setValue(0);

Thx Sematik, it worked !!