这是一个疯狂的猜测,但是这个怎么样:
myForm2.getForm().getValues()['id-1'];
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