I have a grid store and I am able to get modified data using
var modifiedData = store.getModifiedData();
Now I want to get deleted records (I am using ExtJs 3).
I tried using var deletedData = store.getRemovedRecords();
but I guess this property is available in ExtJs 4.
I just want to fetch the records that are deleted from the grid. Any help would be appreciated.