0
다음 예제를 고려하십시오. http://docs.sencha.com/ext-js/4-0/#!/example/grid/binding-with-classes.html 컨트롤러에서 'selectionchange'이벤트를 처리하고 싶습니다. 다음 코드처럼 :ExtJS Grid 이벤트 처리
Ext.define('AM.controller.Users', {
init: function() {
this.control({
'useredit button[action=save]': {
click: this.updateUser
}
});
},
updateUser: function(button) {
console.log('clicked the Save button');
}
});
어떻게해야합니까? 감사