I have a great application, so I have not added things to my app.js:
stores: [] controllers: [] views: [] models: []
Inside, these are just the things I need to build the application. So, when I click on the node (left panel), how can I create the controller that I need and load the model, view, store and other things in this controller? Is it enough to just call the controller (because they are imported into the controller)?
Sort of
Ext.create('MyApp.path.SomeController');
Will it be added in the same way as if I added it to controllers: [] in app.js?
user1509885
source share