我需要添加一个Check box
, 并且当用户checks
在它上面(如更改值check/uncheck
)打印一个console.log
语句。到目前为止,我能够显示复选框,但无法访问其检查事件。
{
xtype: 'checkboxgroup',
columns: 1,
listeners: {
change: function (this, newValue, oldValue, eOpts) {
console.log('change');
console.log(newValue);
}
},
items: [{
boxLabel: 'Cars',
name: 'chk1',
inputValue: '1'
}]
}