我在 extjs4 工作。我将停留在必须处理复选框上的选中和未选中事件的地方。我没有找到适合此选择的事件。我只想处理复选框上的选中和未选中事件..
这是我的一些代码
1)查看代码:----
Ext.define('Am.user.Login', {
extend:'Ext.form.Panel',
id:'loginId',
alias:'widget.Login',
title:'Get your key to socialize yet earn and learn (always free)',
items:[
{
----
},
{
xtype:'checkbox',
fieldLabel: 'Remember me',
name: 'remember',
//id:'checkbox1',
action:'check'
},
],
});
2)控制器代码:---
Ext.define('Am.sn.UserController',
{
extend:'Ext.app.Controller',
------------
-----
init:function()
{
console.log('Initialized Users! This happens before the Application launch function is called');
this.control(
{
'Login button[action=loginAction]':
{
click:this.authenticateUser
},
'Login checkbox[action=check]':
{
change:this.checkedRemeberMe
},
}); //end of control
},//end of init function
checkedRemeberMe:function()
{
console.log("check box selected");
},
});
在这里我将使用更改事件,但每次选择或取消选择它时都会调用它。这里需要哪个事件?请给我一些建议...