When I try to retrieve just grid.getStore().getUpdatedRecords(), it works just fine, but when trying to enter that object and retrieve data from(data), I get is undefined
plugins: [
Ext.create('Ext.grid.plugin.RowEditing', {
clicksToMoveEditor: 1,
listeners: {
'edit': function () {
var grid = Ext.getCmp('dataGrid');
var editedRecords = grid.getStore().getUpdatedRecords(); // <---- OK
//var editedFirstName = editedRecords.data.FirstName;
//console.log(editedFirstName);
console.log(editedRecords);
}
}
})
]
Here is my Firebug showing that this object has data.FirstName, data.LastName, data.id

getUpdatedRecords returns an array of modified records. So you’re code should be …
Considering that you are commiting the updated record after each edit, otherwise the method will return also other previous modified records.
Also there is an easier way to do this, and also more practical. The row editing event click takes two parameters the editor and the object e which contains:
So you’re code should be