我有以下代码:
items: [{
boxLabel: 'yes',
name: 'sameName',
inputValue: '1'
},{
boxLabel: 'no',
name: 'sameName',
inputValue: '0',
checked: true
}]
默认'否'检查,现在我想取消检查并检查输入值为1的项目(语法),我尝试了很多东西,但没有任何工作。
答案 0 :(得分:0)
在您的应用加载时(试图更容易)尝试此操作
Ext.override(Ext.form.field.Checkbox, { inputValue: '1', uncheckedValue: '0'});