当前位置:  开发笔记 > 编程语言 > 正文

Ext RadioGroup - 如何访问所选单选按钮的值?

如何解决《ExtRadioGroup-如何访问所选单选按钮的值?》经验,为你挑选了2个好方法。



1> Adam Bellair..:

这是一个疯狂的猜测,但是这个怎么样:

myForm2.getForm().getValues()['id-1'];



2> 小智..:

getValue()无线电组本身的方法将返回被检查的对象,如果有的话,否则返回undefined.

(顺便说一下,我为我的盒子设置值而不是inputValue,虽然我认为它没有太大的区别,也许它在最后一个"getValue"上),我使用的是extjs 3.0,我的radiogroup配置是与你的略有不同.

var checkedItem = Ext.getCmp('mainPhone').getValue();

if (checkedItem == undefined) return '';

return checkedItem.getGroupValue();
// The getGroupValue will return the value of the checked option in a group,
// unfortunately, it only seems to work on the items and not the radiogroup 
// itself

推荐阅读
殉情放开那只小兔子
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有