我已经使用代码创建了 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);
但它不工作。