Radiogroup set Checked Extjs 4.0

时间:2014-10-05 07:11:21

标签: extjs4

我有以下代码:

        items: [{
            boxLabel: 'yes',
            name: 'sameName', 
            inputValue: '1'

        },{
            boxLabel: 'no', 
            name: 'sameName',
            inputValue: '0',
            checked: true
        }]

默认'否'检查,现在我想取消检查并检查输入值为1的项目(语法),我尝试了很多东西,但没有任何工作。

1 个答案:

答案 0 :(得分:0)

在您的应用加载时(试图更容易)尝试此操作

Ext.override(Ext.form.field.Checkbox, { inputValue: '1',  uncheckedValue: '0'});