I have a problem in removing the records.
I have a grid with pages if i select one record in the first page and change the page and try to remove the record it is not working . (Not delete the record).
Whats i have to do? Is a limitation of grid? Is a bug?
Thanks in advanced.
var aRecords = this.getGridV().getSelectionModel().getSelection();
if (aRecords.length>0) {
var store = this.getGridStoreStore();
store.suspendEvents();
store.remove(aRecords);
store.resumeEvents();
store.sync();
store.load();
}