[Ext]設定RadioGroup選取的項目

[Ext]設定RadioGroup選取的項目

環境:ExtJS 4

ExtJs的物件取值多用getValue(), 設定值都用setValue(assignValue),那Ext.form.RadioGroup,要如何設定呢?

也是使用setValue只是方式不同,要用setValue({Name:assignValue})

    fieldLabel: '是否為系統使用',
    layout: {
        type: 'column'
    },
    items: [
        { boxLabel: '是', name: 'IS_FOR_SYS', inputValue: 'Y' },
        { boxLabel: '否', name: 'IS_FOR_SYS', inputValue: 'N', checked: true }
    ]
});

//設定選到'是'
IS_FOR_SYS.setValue({ IS_FOR_SYS: 'Y' });

Hi, 

亂馬客Blog已移到了 「亂馬客​ : Re:從零開始的軟體開發生活

請大家繼續支持 ^_^