-
28 Jun 2012 7:11 PM #1
problem with sencha sdk using a modular-mvc-architecture
problem with sencha sdk using a modular-mvc-architecture
I was trying to create a modular mvc architecture for my example app... She work fine (please if you have one suggestion reply this thread), but when I was compiled the application using sencha sdk appeared one problem...
The source code is in: https://github.com/diegolovison/modu...c-architecture
The problem is that the https://github.com/diegolovison/modu.../products.jsb3 dont respect the inheritance of the Application class
Other question... is possible to do this with extjs4.1.1rc2?

-
30 Jun 2012 3:23 PM #2
You have all-classes.js, but there are no references to any Ext source?
example ...
Scott.Code:{ "clsName": "Ext.data.Model", "name": "Model.js", "path": "assets/extjs4/src/data/" }, ..
-
1 Jul 2012 3:32 PM #3
resolved..
look the file https://github.com/diegolovison/modu.../products.jsb3
line 522
should beCode:{ "clsName": "Principal.Application", "name": "Application.js", "path": "app/" }, { "clsName": "Products.Application", "name": "Application.js", "path": "app/" },
Code:{ "clsName": "Principal.Application", "name": "Application.js", "path": "app/" }, { "clsName": "Products.Application", "name": "Application.js", "path": "modules/products/app" },


Reply With Quote
