I didn’t find much documentation on it, though I probably just missed it somewhere 😀  If you are using Ext.Application for building up your Javascript files then you will want to know how to disable the nocache mechanism that is setup by default.  You will notice that the files have *.js?_dc=<insert timestamp number here>.  It’s simple to fix this problem.
1 2 3 4 | Ext.Loader.setConfig({ enabled: true, disableCaching:false }); |
Just add the disableCaching to false and your good to go!
Dude, you are awesome. Thanks for sharing – my other alternative was hi-jacking the ext-all.js, which I really hate to do.
Glad it worked for you!
Thanks for the tip!
How does their anti-cache mechanism affect something like AppCache?
still problems!
In the most simple startup without packaging, using smallest library, ext.js :
Hello Ext
Are you using the newest version?
This only works when I switch to using sencha-touch-all.js.
Why doesn’t sencha-touch.js observe this setting?
Ahh, I hadn’t noticed that difference! Thanks for the comment!