I'm just starting experimenting with jQuery and trying to apply it to a very simple CRUD app that consists of list, create, edit & show pages.
I've applied the jQuery-mobile markup conventions and everything looks very nice. However, I am confused about the problem of refreshing stale data. I understand that jQuery-mobile overrides links and form submission with AJAX to deliver a 'one-page app'. Again, this is working for me and all my data-role="page" stuff is loading and transitioning correctly.
What I don't understand is that when I modify data, (e.g. submit a form to create a new item then navigate back to the 'list' page) certain pages need to be refreshed from the server to pick up the modified data. What jQuery-mobile does is just re-display the previously loaded page which is now stale. Similarly, every time I re-visit the 'create page' to create another new item the form is still filled in from the previous submit as the page is not actually refreshing.
If this is something I need to script myself, that's fine but I'm curious that there doesn't seem to be any mention of what I would have thought was a common scenario in the jQuery-mobile docs. It feels like I must be missing something obvious. How are other people handling this?