extjs3 RadioGroup单选变多选问题

来源:互联网 发布:内控优化演讲 编辑:程序博客网 时间:2024/06/05 09:48

这个问题在网上搜了好久才找到解决办法,其实很简单,关键位置就是radio 的name问题


<span style="white-space:pre"></span>{                xtype: 'radiogroup',                width: 500,                fieldLabel: '',                allowBlank: false,                name:'file_type',                cls: 'x-check-group-alt',                items: [                    {name:'file_type',boxLabel: '全部',id:'radio_all',inputValue:'all' , checked:true},                    {name:'file_type',boxLabel: 'PDF',id:'radio_pdf',inputValue:'pdf'},                    {name:'file_type',boxLabel: 'txt',id:'radio_txt',inputValue:'txt'},                    {name:'file_type',boxLabel: 'xml',id:'radio_xml',inputValue:'xml'},                    {name:'file_type',boxLabel: 'doc',id:'radio_doc',inputValue:'doc'}]            }

由于之前没有加同样的name:'FileItype'
导致所有radio全都可以选择,没有单选的效果
耽误一个小时功夫的小问题,特此记录

0 0
原创粉丝点击