gpt4 book ai didi

javascript - 分机JS : How to configure combobox as multiselect and singleselect at runtime?

转载 作者:行者123 更新时间:2023-11-28 01:37:14 25 4
gpt4 key购买 nike

我试图在运行时将组合框动态配置为多选单选。我使用了 setMultiSelect(true) amdcombo.multiSelect(true) 但它们不起作用。有什么建议吗?

最佳答案

我很惊讶缺少此功能。似乎可以将功能添加到核心中。这是 Ext.form.ComboBox 的扩展,可以满足您的需求:

Ext.define('My.form.MultiSelectCombo', {
extend: 'Ext.form.ComboBox',
setMultiSelect: function(multiSelect) {
var me = this;
me.multiSelect = multiSelect;
me.createPicker();
me.reset();
},
});

以下是 MultiSelectCombo 的实际应用示例:http://jsfiddle.net/r3kv2/

关于javascript - 分机JS : How to configure combobox as multiselect and singleselect at runtime?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21391937/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com