5

我需要添加一个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'
    }]
}
4

1 回答 1

6

对于任何其他字段,更改事件应该可以工作。

示例:http: //jsfiddle.net/mbbjz/2/

于 2012-07-09T12:40:09.827 回答