Hey, I'm trying to deploy my application in a minified manner and I am following these instructions:
http://docs.sencha.com/ext-js/4-0/#!...rted-section-3
All the produced files look good. all-classes.js and app-all.js look like they contain my JS files and looked to be minified in the app-all.js. However, when I try to include just my app-all.js the webpage tries to dynamically load my other JS files. So even though my ExampleStore.js is in/defined by my app-all.js the webpage tries to load my ...sencha_bundled/app/store/ExampleStore.js?_dc=1354044172696
Am I missing some configuration option or is my understanding of what the Sencha SDK tool is suppose to do incorrect? Here is my index.html:
PHP Code:
<html>
<head>
<title>Hello Ext</title>
<link rel="stylesheet" type="text/css" href="extjs/resources/css/ext-all.css">
<script type="text/javascript" src="extjs/ext.js"></script>
<script type="text/javascript" src="app-all.js"></script>
</head>
<body></body>
</html>
When I load this page Firebug clearly show in the console a get request requesting my various models, stores, and views.
Thanks for your help!
James