extjs radioGroup怎么取选中的值?怎么设置值选中

 我来答
福喜900
推荐于2016-06-23
知道答主
回答量:0
采纳率:0%
帮助的人:0
展开全部
//new 一个RadioGroup组件

var radiogroup= new Ext.form.RadioGroup

(

{ fieldLabel : "性别",

items : [

{ boxLabel : '男', inputValue : '1', checked : true, name : "radSex" },

{ boxLabel : '女, name : "radSex", inputValue : '2' }

]

}

);

然后还需要重写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; } } } });

//获取的是inputValue的值

radiogroup.getValue();

//设置值选中

radiogroup.setValue(“1”);
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式