How do I reload data for just one item in my store?
I have a list of items in a store that I hit on my API endpoint like so:
http://myapi.com/things.json
When I navigate to this item I'd like to be able to either give the user a chance to reload the data (from the API) manually, or do it automatically myself.
Is this possible with Sencha? How can I accomplish this?
Additionally, if I hit the single URL for one of these things like:
http://myapi.com/things/1.json
...it returns associated nested data. I'd like to reload this associated data as well.
I can't find a "reload", "refresh", "load", or any other type of method that will allow me to do this in the Model API.
Help?