如何在Radio组extjs中禁用Multiselect

时间:2012-08-22 07:40:26

标签: javascript extjs

我在带有3个radiobutton的extjs面板中有一个radiogroup组件。但我可以一次选择多个rediobuttons,而radiogroups应该只允许选择一个。 它应该是默认行为。

我无法在radiogroup组件中找到任何配置属性来禁止多选。

有没有办法在extJs中的无线电组中禁用多选。

1 个答案:

答案 0 :(得分: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}
]