コードを使用してRadioGroupを作成しました
var radios = new Ext.form.RadioGroup({
columns : 2,
items: [
{boxLabel: 'E-Mail', name: 'communication', inputValue: 1},
{boxLabel: 'Nagios', name: 'communication', inputValue: 2}
]
});
あるイベントでラジオボタンの1つをチェックしたい。どうやってするの?私は使ってみました:
radios.setValue(true, false);
しかし、それは機能していません。