我正在使用控制器在渲染某个面板时初始化一个函数。如何使用ComponentQuery来检测确切的面板而不使用'parent>孩子的发现者?
以下是代码:
Ext.define('MC.controller.Description', {
extend: 'Ext.app.Controller',
init: function() {
this.control({
'**what goes here?**': {
render: this.onPanelRendered
}
});
},
onPanelRendered: function() {
console.log('PANEL WAS RENDERED WHOOO');
}
});
答案 0 :(得分:1)
使用itemId
,然后使用queryById