1
如何在默認類型爲按鈕時獲取toggleGroup的值。 allowblank:false也不起作用。Ext JS - 默認類型爲按鈕時獲取toggleGroup的值
{
xtype:'radiogroup',
fieldLabel: 'What is your title?',
layout:'hbox',
allowBlank:false,
defaultType: 'button',
id: 'titleSel',
defaults: {
enableToggle: true,
toggleGroup: 'titleGroup',
allowDepress: false,
width: '16.56%',
name: 'title',
},
items: [
{text: 'Mr', value: 'Mr', inputValue: 'sfsf'},
{text: 'Mrs', value: 'Mrs'},
{text: 'Madam', value: 'Madam'},
{text: 'Ms', value: 'Ms'},
{text: 'Dr', value: 'Dr'},
{text: 'Prof', value: 'Prof'},
],
},
你試過RadioGroup的getChecked()嗎? – 2014-11-05 13:45:39
getChecked()沒有返回任何值。當我刪除 - defaultType:'button'時,我可以獲得提交按鈕的價值。基本上我試圖改變無線電看起來像按鈕一樣的感覺。 – 2014-11-05 14:13:16
Ext.getCmp('titleSel')。getChecked() - 不返回任何值。 – 2014-11-05 14:14:34