ext 中 设置 radioGroup 内 radio的值

{fieldLabel:"是否可用",labelWidth:60,xtype:'radiogroup',itemId:'isUsed',width:180,items:[
                                { boxLabel: '否', name: 'isUsed', inputValue:false},
                                { boxLabel: '是', name: 'isUsed', inputValue:true,checked:true}
 ]}


tar.down('#isUsed').setValue({'isUsed':data.isUsed});


不能直接 tar.down('#isUsed').setValue({data.isUsed});

要以json map的形式 指明 name,因为一个radioGroup内可以有多个radio分组。


你可能感兴趣的:(ext 中 设置 radioGroup 内 radio的值)