listeners:{
scope:this,
render:function(panel){
panel.el.on('keypress',function(e){
var key = e.getKey();
if( key === e.ENTER ){
this.login();
}
},this);
}
}
在组件中添加键盘事件,例如表单回车提交,需要把以上事件在表单render之后添加键盘监听程序。
scope:this,
render:function(panel){
panel.el.on('keypress',function(e){
var key = e.getKey();
if( key === e.ENTER ){
this.login();
}
},this);
}
}
在组件中添加键盘事件,例如表单回车提交,需要把以上事件在表单render之后添加键盘监听程序。