gpt4 book ai didi

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

转载 作者:数据小太阳 更新时间:2023-10-29 04:26:42 24 4
gpt4 key购买 nike

我在访问单选组中所选单选按钮的值时遇到了一些困难。根据论坛和网络上其他帖子中的讨论,我尝试了多种不同的方法。不幸的是,没有足够的幸运(或技术)让它发挥作用。基于以下 FormPanel 配置,我希望有人能告诉我如何获取组“mainPhone”中所选 radio 的值。

谢谢!

想要更新以表明我能够从 stackoverflow 获得响应,而 EXT-JS 论坛没有为我提供任何帮助。开始使用 stackoverflow!

马特

function createForm(elem) {
var myForm2 = new Ext.form.FormPanel({
renderTo:elem,
width:425,
frame:true,
style:"margin: 10px auto 10px auto;",
items: [{xtype:'fieldset',
title: 'Contact Info',
autoHeight:true,
items :[new Ext.form.RadioGroup({
fieldLabel: 'Main Phone',
vertical: false,
id:"mainPhone",
items: [
{boxLabel: 'Home', name: 'id-1', inputValue: 'H', checked:true},
{boxLabel: 'Work', name: 'id-1', inputValue: 'W'},
{boxLabel: 'Other', name: 'id-1', inputValue: 'O'}
]

}),
new Ext.form.TextField({
id:"frm_CreateCustomerHomePhone",
fieldLabel:"Home Phone",
width:275,
allowBlank:true
}),
new Ext.form.TextField({
id:"frm_CreateCustomerWorkPhone",
fieldLabel:"Work Phone",
width:275,
allowBlank:true
})
new Ext.form.TextField({
id:"frm_CreateCustomerOtherPhone",
fieldLabel:"Other Phone",
width:275,
allowBlank:true
})
]}]});
}

最佳答案

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

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

关于javascript - Ext RadioGroup - 如何访问所选单选按钮的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/414529/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com