我正在使用extjs 4.1。当我点击一个按钮时,我的表单面板打开,其中只包含一个单选按钮(即第一次正确显示)。当我下次运行表单面板功能时,我可以看到两个单选按钮(即每次运行功能新的单选按钮被添加)
我的代码如下
var fibasiccad=Ext.create('Ext.form.Panel', {
width: 300,
frame: true,
bodyPadding: '10 10 0',
defaults: {
anchor: '100%',
allowBlank: true,
msgTarget: 'side',
labelWidth: 50
},
items: [{xtype : 'radiogroup',
fieldLabel : 'Compensation ID',
hidden: true,
name:'compID',
id:'compID',
labelWidth: 100,
columns: 2,
items: [{boxLabel : 'New ID',
name : 'compidtype',
inputValue: 'New',
}, {
boxLabel : 'Existing ID',
name : 'compidtype',
inputValue: 'Exist',
checked : true
}
] }
]
});
请帮助我。