如何在multiSelect框中禁用其余所有项目

时间:2011-07-28 09:26:49

标签: extjs extjs4 extjs3

选择项目后,如何禁用多选框中的所有项目。因此不应选择多个项目。多选框显示值为:00.00A.M ... 11.00pm。例如:如果选择01.00 am,则应禁用所有,但限制为1选择框扩展为现有宽度的两倍。使用了以下属性:

                            xtype:'multiselect',
                            id:'fromMultiselect',
                            name:'fromMultiselect',
                            columnWidth: .33,
                            maxSelections:1,
                            initValues : true,
                            hideLabel : true,
                            width : 130,
                            height : 90,
                            allowBlank : false,
                            disabled: false,
                            mode:'local',
                            store : FromTimeStore ,
                            valueField : 'id',
                            displayField : 'displayFromTime',
                            columnWidth: .32

1 个答案:

答案 0 :(得分:0)

为什么不在多选中使用combobox:false并在渲染后展开它?

尽管如此,你仍然可以使用多选: 添加选项:maxSelections: 1,

此处的示例(您必须取消注释maxSelections属性):

http://dev.sencha.com/deploy/ext-4.0.1/examples/multiselect/multiselect-demo.js

http://dev.sencha.com/deploy/ext-4.0.1/examples/multiselect/multiselect-demo.html