In ExtJS 4.2 I have a grid with records with a remote load. I select a row in the grid and update that in the database.I am updating a record in the database and reloading the store with store.load(). After this occurs I can pause in debugger and check the store and it does indeed have the correct values. The same record is still selected however the following code:
var selectedRecords = grid.getSelectionModel().getSelection();
Is not getting the updated records. If I deselect and reselect it the record is refreshed but without doing so it still has the old values. Is there a way to refresh it.
I see a lot of posts about getting the rows to stay selected upon load, but that is not a problem for me it seems to be doing that on its own.