'취소'를 클릭 한 후 아무 것도 나타나지 않는 창이 있습니다. 정말 내가 잘못지고있어 수있는 것을 혼동하고 있습니다 :extjs 버튼 처리기가 작동하지 않는 이유
this.cancel이 정의되어 있기 때문이다Ext.define('Myapp.view.User.NewForm', {
extend: 'Ext.window.Window',
width: 610,
height: 380,
y: 50,
resizable: false,
closable: true,
draggable: false,
title: 'new user',
items: [{
buttons: [{
text: 'save',
iconCls: 'form-save'
},{
text: 'cancel',
iconCls: 'form-cancel',
scope: this,
handler: this.cancel
}]
}],
cancel: function() { alert('cancel'); }
})