copyRowContent does not update ...

Hello,
I am using a grid with dataProcessor and dataConnector to update a mysql database and I am trying to add new rows by copy …

var id=mygrid.uid(); 
mygrid.addRow(id, "", mygrid.getRowIndex(rId));
mygrid.copyRowContent(mygrid.getSelectedRowId(),id)
mygrid.showRow(id);

A new row is automatically inserted in the database but the copied cells are not updated automatically … probably because the cells are not marked as modified after the copy.

Is there a solution to indicate that the newly copied cells have been modified ? Or to force update of a specific grid row ?

Many thanks, Fred.

Unfortunately we cannot reproduce this issue locally. Can you please provide complete demo where we can reproduce it? You can find tutorial how to create complete demo here docs.dhtmlx.com/doku.php?id=othe … leted_demo

My problem was due to a misunderstanding … sorry !