在ExtJS4中,可以在Controller中执行:
Ext.define('App.controller.Main', {
extend: 'Ext.app.Controller',
views: ['App.view.SampleWindow'],
refs: [{
ref: 'sampleWindow',
xtype: 'samplewindow',
autoCreate: true
}],
init: function(application) {
var win = me.getSampleWindow();
win.show();
}
});
如何在ViewController中完成此操作? Viewcontroller没有refs属性。并且lookupReference
无效。