I'm using Kendo UI Mobile Framework and have the bulk of my views handled as remote views. For example, a remote html doc view1.html
instead of an inline div element #view1
.
They all work fine in the browser, however I see some problems related to caching of these remote views:
- Reloading the home screen app after closing it doesn't force the web app contents to refresh/update (iOS Saved to home screen).
- Recreating the home screen web app doesn't force the contents to refresh/update, even after clearing the Safari web data (iOS Saved to home screen).
Does anyone know how to force the app to fetch new versions of these remote views on initial application load (once per session) when that is all taken care of behind the scenes in the Kendo Mobile Library?
I was looking into ApplicationCache but that seems pretty scary for my mostly dynamic, database intensive app. On top of this, I don't think my webserver (which runs off the back of a 4D database can actually serve the correct mime-type for appcache files).