extJS RadioGroup setValue() 函数
代码创建了 RadioGroup
var radios = new Ext.form.RadioGroup({
columns : 2,
items: [
{boxLabel: 'E-Mail', name: 'communication', inputValue: 1},
{boxLabel: 'Nagios', name: 'communication', inputValue: 2}
]
});
我使用我想检查某个事件的单选按钮之一的 。怎么做呢? 我尝试使用:
radios.setValue(true, false);
但它不起作用。
I have created RadioGroup using the code
var radios = new Ext.form.RadioGroup({
columns : 2,
items: [
{boxLabel: 'E-Mail', name: 'communication', inputValue: 1},
{boxLabel: 'Nagios', name: 'communication', inputValue: 2}
]
});
I want to check one of the radio button on some event. How to do it?
I tried using:
radios.setValue(true, false);
but it is not working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
http://docs.sencha.com/extjs/4.2 .2/#!/api/Ext.form.RadioGroup-method-setValue
http://docs.sencha.com/extjs/4.2.2/#!/api/Ext.form.RadioGroup-method-setValue
radios.items.items 应该返回单选组内的单选按钮。然后,您可以对它们使用 setValue() 函数来选中或取消选中它们。
radios.items.items should return you the radio buttons inside the radio group. You can then use the setValue() function on them to check or uncheck them.
选择“电子邮件”,例如
一般用途:
to select 'E-Mail',for example
General use:
这对我有用
,其中输入值可以是单选按钮的inputValue字段的值
干杯
This works for me
Where input value could be the value of the inputValue field of the radio button
Cheers
尝试将值数组传递给 setValue 方法,如下所示:
这将在 ExtJs 3.x 中工作,不确定 ExtJs4 检查 api。
Try passing an array of values to the setValue method like so:
This will work in ExtJs 3.x not sure about ExtJs4 check the api.
这是一个旧线程,但 Google 总是首先找到它,所以我将我的解决方案(在 Ext 3.4.1.1 上)放在这里。
试试这个:
radios.setValue(2);
或者对于更大的表单面板formPanel.getForm().setValues([{communication: 2}])
现在应该可以工作了。
This is an old thread, but Google always finds this first, so I'll just throw my solution (on Ext 3.4.1.1) in here.
Try this:
radios.setValue(2);
or for a bigger form panelformPanel.getForm().setValues([{communication: 2}])
should work now.