次のような状況があります。ExtJS MVC コントローラーには、カスタム ウィンドウを表示する次の行があります。
this.control({
'grid_file button[action=change_settings]': {
click: this.open_settings
}
})
さらに以下:
open_settings: function() {
this.getView('browser.storage_settings').create().show();
},
このウィンドウを非表示にするキャンセル ボタンを追加したいのですが、id
? イベントリスナーと関数内のコードは何でしょうか?