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.