I have a Grid whch allows a user to update columns (i.e. properties in a ModelData). Is there a way for me to see the un-modified record (i.e. ModelData)?
When the user clicks a 'Commit' button: I can use List modifiedRecords = listStore.getModifiedRecords(); for modified records. I can use Map changedFieldsMap = modifiedRecord.getChanges(); to see the columns that have changed but I can't see what the unchanged values are... can I?!?!
~richard