8

我已经使用代码创建了 RadioGroup

var radios = new Ext.form.RadioGroup({
     columns    : 2,
       items: [
             {boxLabel: 'E-Mail', name: 'communication', inputValue: 1},
             {boxLabel: 'Nagios', name: 'communication', inputValue: 2}
        ]
   });

我想检查某个事件的单选按钮之一。怎么做?我尝试使用:

radios.setValue(true, false);

但它不工作。

4

6 回答 6

14

http://docs.sencha.com/extjs/4.2.2/#!/api/Ext.form.RadioGroup-method-setValue

var form = Ext.create('Ext.form.Panel', {
    title       : 'RadioGroup Example',
    width       : 300,
    bodyPadding : 10,
    renderTo    : Ext.getBody(),
    items       : [
        {
            xtype      : 'radiogroup',
            fieldLabel : 'Group',
            items      : [
                { boxLabel : 'Item 1', name : 'rb', inputValue : 1 },
                { boxLabel : 'Item 2', name : 'rb', inputValue : 2 }
            ]
        }
    ],
    tbar        : [
        {
            text    : 'setValue on RadioGroup',
            handler : function () {
                // Set the value of the 'rb' radio butons
                var val = {rb : 2};
                form.child('radiogroup').setValue(val);
            }
        }
    ]
});
于 2013-12-23T08:51:09.937 回答
11

radios.items.items should return you the radio buttons inside the radio group. You can then use the setValue() function on them to check or uncheck them.

radios.items.items[index].setValue(true/false);
于 2011-05-06T08:39:36.453 回答
6

选择“电子邮件”,例如

radios.setValue({communication: 1});

一般使用:

radioGroup_var.setValue({radioGroup_name: 'inputValue'});
于 2013-07-07T13:28:30.787 回答
1

这对我有用

radios.setValue({communication:<input value>});

其中输入值可以是单选按钮的inputValue字段的值

干杯

于 2012-09-11T13:17:57.677 回答
0

Try passing an array of values to the setValue method like so:

radios.setValue([true, false]);

This will work in ExtJs 3.x not sure about ExtJs4 check the api.

于 2011-05-06T08:40:03.870 回答
0

这是一个旧线程,但 Google 总是首先找到它,所以我将把我的解决方案(在 Ext 3.4.1.1 上)放在这里。

尝试这个:

var radios = new Ext.form.RadioGroup({
    columns: 2,
    name: 'communication', // <== ADD THE NAME AGAIN ON HERE
    items: [
        {boxLabel: 'E-Mail', name: 'communication', inputValue: 1},
        {boxLabel: 'Nagios', name: 'communication', inputValue: 2}
    ]
});

radios.setValue(2);或者对于更大的表单面板 formPanel.getForm().setValues([{communication: 2}]) 现在应该可以工作了。

于 2016-04-13T13:55:16.643 回答