Hi Happy New Year 
I need to change the status of a grid with the code below, to force the sending of grid with dataprocesor
dhxGrid.cells(0,0).cell.wasChanged=true;
but it doesnt work 
what im doing wrong?
the following error appears
thank you

Olga
#2
First parameter of cells() method must be id fo the row. Any row in grid should not have id == β0β
Hi Olga, thank for your answer
i have the following code
var rowID=dhxGrid.getRowId(0);
//alert(rowID)
dhxGrid.cells(rowID,0).cell.wasChanged=true;
I think, this should send the grid to the server, but only the following message appears,
debug mode
Log:
Initiating data sending for all rows
And doesnt send anything 
Olga
#4
You should also use setUpdated() method of DataProcessor to mark row updated:
dp.setUpdated(rowId,true);
Please find more information here docs.dhtmlx.com/doku.php?id=dhtm β¦ setupdated