Content Data from Grid not correct
Hi
i have a grid, and when i delete arow
obj.onCellDoubleClicked = function(event, col, row){obj.deleteRow(row);};
and i try to get the content of the grid object, it's not correct
var str='';
for(i=1;i<=obj.getRowCount();i++)
str+=obj.getCellText(1,i)+"\n";
alert(str);
internally it delete's always the last element, but visually it deletes the correct element
help is appreciated
thanks in advance
i have a grid, and when i delete arow
obj.onCellDoubleClicked = function(event, col, row){obj.deleteRow(row);};
and i try to get the content of the grid object, it's not correct
var str='';
for(i=1;i<=obj.getRowCount();i++)
str+=obj.getCellText(1,i)+"\n";
alert(str);
internally it delete's always the last element, but visually it deletes the correct element
help is appreciated
thanks in advance
Nuno Silva
September 18,