我想添加事件監聽器插件Controller.like http://docs.sencha.com/ext-js/4-1/#!/api/Ext.app.Controller看起來不同於插件使用組件查詢比正常組件。 是否有可能使用組件查詢從組件中獲取插件?如何使用Extjs 4.1上的組件查詢從組件中獲取插件?
這裏是我的組件使用組件查詢像
Ext.define('App.controller.FileManagement', {
extend:'Ext.app.Controller',
stores:['Folder'],
views:['file.List','file.FileManagement'],
refs:[
{ ref:'fileList', selector:'filelist' }
],
init:function() {
this.control({
'filelist > treeviewdragdrop':{drop:this.drop} // <-- here is selector
});
},
// etc ....
非常感謝你的幫助= D – XenoN