We use grid with dataprocessor.
We don’t autosync we manually call sendData().
If a row is marked as deleted (strikethrough after .deleteRow()) and you call dataProcessor.setUpdated(id,true,‘updated’).
How can you remove the strikethrough so the user knows it is “undeleted”?
Try to use:
dataProcessor.setUpdated(id,false).
Yes that does the trick, thank you!