extjs radioGroup怎么取值并显示画面上?

{xtype:'label',text:'性别:'},{xtype:'radiogroup',items:[{boxLabel:'男',name:'radSex',val... {
xtype:'label',
text:'性别:'
},{
xtype: 'radiogroup',
items: [
{boxLabel: '男', name: 'radSex', value:'1', checked: true},
{boxLabel: '女', name: 'radSex', value:'2'}
]
}
Ext.getCmp('radSex').setValue(2)

'女'的checked不为true?为什么?
展开
 我来答
luffy1201
2011-06-12 · TA获得超过1523个赞
知道小有建树答主
回答量:401
采纳率:0%
帮助的人:576万
展开全部
var radiogroup= new Ext.form.RadioGroup({
fieldLabel : "性别",
items : [{
boxLabel : '男',
inputValue : '1',
checked : true,
name : "radSex"
}, {
boxLabel : '女,
name : "radSex",
inputValue : '2'
}]
});

radiogroup.getValue()获取的是inputValue的值
radiogroup.setValue(“1”);//设置值选中

然后还需要重写radiogroup的两个方法,在按照我上面这样做就可以了
//RadioGroup重写的getValue和setValue
Ext.override(Ext.form.RadioGroup, {
getValue: function(){
var v;
if (this.rendered) {
this.items.each(function(item){
if (!item.getValue())
return true;
v = item.getRawValue();
return false;
});
}
else {
for (var k in this.items) {
if (this.items[k].checked) {
v = this.items[k].inputValue;
break;
}
}
}
return v;
},
setValue: function(v){
if (this.rendered)
this.items.each(function(item){
item.setValue(item.getRawValue() == v);
});
else {
for (var k in this.items) {
this.items[k].checked = this.items[k].inputValue == v;
}
}
}
});
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式