私は EXTJS 4 を使用しており、Button クラスを使用しています。それを使用すると、dblclick イベント リスナーにアクセスできません。このリスナーを属性としてボタン クラスに追加する方法はありますか?
Ext.define('MemOS.controller.Icon', {
extend: 'Ext.app.Controller',
models: ['Icon'],
stores: ['Icons'],
views: ['Icon'],
refs: [{
ref: 'icon',
selector: 'icon'
}],
init: function () {
this.control({
icon: {
click: function(c) {
Ext.create('MemOS.view.Window', {
title: 'Project',
items: [{
xtype: 'projectsgrid'
}]
}).show();
}
}
});
},
});