extjs 中radiogroup取值,怎么取啊

 我来答
luffy1201
推荐于2016-04-11 · TA获得超过1523个赞
知道小有建树答主
回答量:401
采纳率:0%
帮助的人:576万
展开全部
重写下getValue方法

//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;
}
}
}
});

使用:
var radiogroup= new Ext.form.RadioGroup({
fieldLabel : "是否是系统管理员",
width : 60,
items : [{
boxLabel : '是',
inputValue : 'true',
name : "sysAdmin"
}, {
boxLabel : '否',
name : "sysAdmin",
checked : true,
inputValue : 'false'
}]
});

radiogroup.getValue();//取值
百度网友f43968375
2011-04-12 · TA获得超过434个赞
知道小有建树答主
回答量:591
采纳率:0%
帮助的人:520万
展开全部
radioGroup有id就 Ext.getCmp('id').getValue(); 取得就是group里面选中的radio的值
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
vvicky520
2018-02-11
知道答主
回答量:2
采纳率:0%
帮助的人:1866
展开全部
不要再说重写了,有个getGroupValue()方法可以直接取的。方法是
Ext.getCmp(id).getValue().getGroupValue();
id是选框的id.害我找半天!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式