Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I used these 2 commands to compress my project;

sencha create jsb -a http://localhost/Project/app.html -p a.jsb3 -v
sencha build -p a.jsb3 -v -d .

and then used the following code in the app.html file

<script type="text/javascript" src="extjs/ext.js"></script>
<script type="text/javascript" src="app-all.js"></script> 

But, the problem is that when I run the application, I get an error saying

"NetworkError: 404 Not Found - http://localhost/Project/MyApp/view/PersonView.js?_dc=1347769776730"

and many other views; but when I change ext.js to ext-all.js everything works.

But if I use ext-all.js I think I am calling all the extjs classes, and this could reduce the start up speed. How should I correct my code?

share|improve this question
What does that do and where should i add it ? – Illep Sep 16 '12 at 6:09
Disregard my comment. That won't help in your situation. – rwilliams Sep 16 '12 at 6:12
Any other idea as what's going on with my code ? – Illep Sep 16 '12 at 7:09
Try to include generated all-classes.js script instead of ext.js and app-all.js – Tramway Sep 16 '12 at 12:22

1 Answer

You should include ext.js or ext-dev.js in app.html when you call sencha build tools (not ext-all variants). Remember to enable dynamic loader as well configured to look in src folder for ExtJS classes. Then a JSB3 file with correct ExtJS references will be created.

 Ext.Loader.setConfig({
            enabled: true,
            paths: {
                'Ext': '/ext-4.1.1/src', 
                'Ext.ux': ... // Set UX path if you use any ux classes 
                // Set path for your classes as well
            }
        });

Run the website with Firebug enabled and fix any warnings in console tab.

share|improve this answer
How can i enable dynamic loader, and point to SRC folder ? – Illep Sep 16 '12 at 17:40
I have updated my answer. – Colombo Sep 17 '12 at 4:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.