Hi Mitchell, thanks for the reply. Much appreciated!
I deleted the record from the backend database (not the store). I then pulled to refresh expecting the deleted records to be removed from the list. New and modified records are picked up but the deleted records remain in the list.
Should I do something with the store when the user Pulls to Refresh (reload it perhaps) or should that happen automatically?
I noticed this as well, after thinking it must be my code's problem for the longest time. I don't know if this is a bug or not, but I got it to do what you and I seem to want by adding this
Code:
store.load();
to PullRefresh.js in the fetchLatest function, around line 175. Seems to correctly add and remove entries now.