-
5 Feb 2013 9:04 AM #1
Unanswered: Ext.Loader: Multiple Classes in one File
Unanswered: Ext.Loader: Multiple Classes in one File
Hello!
Is there any way to explain the Ext.Loader that there are multiple classes in one file, like:
Defining all path to this files results in three inclusions. I would like to keep them in one file for this special plugin, is there any configuration?Code:Ext.define('MyApp.MyAwesomeHelperClass1', {}); Ext.define('MyApp.MyAwesomeHelperClass2', {}); Ext.define('MyApp.MyAwesomeHelperClass3', {}); //eof
Thanks
Roland
-
7 Feb 2013 8:13 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,641
- Vote Rating
- 434
- Answers
- 3107
There isn't any config that will do this. You'd basically have to not require the other 2 classes.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
7 Feb 2013 12:01 PM #3
Not requiring the other classes won't work, my extension basically has a structure like Ext has, some basic functions and shortcuts on the main class and then subclasses.
What do you think about adding alternateClassName:['MyExtension.Main'] to my main class and then always requiring it though MyExtension.Main?
Thanks
Roland


Reply With Quote