We are using the data grid with [remoteOperations]="true" in an angular app.
The data store was created using AspNetData.createStore method.
Once the user select any record on the grid, we show a detail page, where they can edit the record. Once the user saves the changes, we want to replace the corresponding record in the grid with the modified one. Before using remote operation, we could easily replace it on the bound data store. But now that we are using remote loading, we don't know how can we find/access the record in the store that was created using AspNetData.createStore method.