を追加する必要があり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'
}]
}