How to force a row to be sent by dataprocessor

Hi

I have a row in my grid (the last one) which has data amended programatically only based on entries in other rows. When I do a dp.sendData() it does not include this row. How can I force this row to be sent?

Thanks in advance

DataProcessor detects a row changing only by edit operations. If a row was changed by a direct API calling, it will not be updated. In such case you can manually call the dataProcessor to inform about the update operation:
grid.cells(id,ind).setValue(new_one)
dp.setUpdated(id,true);

Hi Olga thanks for your reply. In the dp.setUpdated(id,true) what does the ‘id’ refer to? Is it the row id?

Thanks

Yes, this is row id