I want to integrate EXT JS's Portal Example in my application so I downloaded that from
http://try.sencha.com/extjs/4.1.0/community/extjs4-mvc-portal/
When I try it in Java.. it runs perfectly fine.. but when I run it in Django, where my application is built on.. it shows me this error :
"GET /designLayout/app/view/Viewport.js?_dc=1363392859943 HTTP/1.1" 404 3384
All the other GET
requests are runnings well, for example :
"GET /static/extjs/src/layout/container/Form.js?_dc=1363392859942 HTTP/1.1" 200 4252
I have no idea why it is looking for Viewport.js?_dc=1363392859943 when autoCreateViewport: true
is defined in app.js according to the example I downloaded.
How should I go by configuring the 'app' in django? Right now all my files are in static
folder so that Django picks it up.
Please guide me. Thank you.