我在具有3个radiobutton的extjs中的面板中有一个radiogroup组件.但我可以一次选择多个rediobuttons,而radiogroups应该只允许选择一个.它应该是默认的行为.
我无法在radiogroup组件中找到任何配置属性来禁止多选.
有没有办法在extJs中的无线电组中禁用多选.
Ben*_*Ben 14
配置在收音机下.无线电组下的每个单选按钮应具有相同的名称.看看下面的代码.
xtype: 'radiogroup'
,fieldLabel: 'Sample radiogroup'
,items: [
{boxLabel: 'Item 1', name: 'same-name', inputValue: 1}
,{boxLabel: 'Item 2', name: 'same-name', inputValue: 2, checked: true}
,{boxLabel: 'Item 3', name: 'same-name', inputValue: 3}
,{boxLabel: 'Item 4', name: 'same-name', inputValue: 4}
,{boxLabel: 'Item 5', name: 'same-name', inputValue: 5}
]
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
5757 次 |
| 最近记录: |