我有一些困難訪問在radiogroup中選定的單選按鈕的值。基於論壇和網絡上其他帖子的討論,我嘗試了許多不同的方法。不幸的是,運氣不夠好(或熟練)。基於下面的FormPanel配置,我希望有人能夠告訴我如何獲得組中'mainPhone'中選定電臺的值。Ext RadioGroup - 如何訪問所選單選按鈕的值?
謝謝!
想要更新以表明我能夠從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
})
]}]});
}
這一個做到了!非常感謝 – Matty 2009-01-06 14:05:33