Hello,
I have lots of custom classes in my Ext JS project and they are all - let's say - in the "my_custom_classes/" directory and use "My." namespace. The namespace and the path are being picked up correctly by the bootstrap.js, so there is an entry like this:.Code:"My": "my_custom_classes/"
When I require a custom class via Ext.require at the beginning of the app.js file, it works. When I use the "requires:" config attribute in the Ext.define block (without prior require via the Ext.require method), it tries to load the classes from a path relative to the "app/" directory. I haven't been able to figure out why it doesn't use the loader path.
Is there anything I am missing on how the Ext.class.requires should work? Thank you!