Is there a way to get all the updated/inserted/deleted rows

Is there a way to get all the updated/inserted/deleted
rows using the serialize function?


The serialize functionality
can’t return a deleted row because such rows are fully removed from model and
not accessible anymore.


The changed rows can be retrieved, starting from
dhtmlxGrid 1.1. The 5th parameter of setSerializationLevel function enables
serialization of only updated rows.

           
grid.setSerializationLevel(false,false,false,false,true)