I have a big app so I didn't add things in my app.js:
stores: []
controllers: []
views: []
models: []
Inside those are only things that I need for application to be created. So, when I click on the node (left panel) how can I create the controller I need and load model, view, store and other things in that controller? Is it enough just to call controller (because they are imported in controller)?
Something like
Ext.create('MyApp.path.SomeController');
Would it be added just like if I would add it in controllers: []
in app.js?