gpt4 book ai didi

javascript - ExtJS 4.1.1 : Custom display text for multi-select combobox

转载 作者:行者123 更新时间:2023-12-03 02:55:48 24 4
gpt4 key购买 nike

我有一个多选组合框,我需要按照特定模式“选择[x]”设置其显示值,其中x对应于所选项目的数量。不幸的是,在尝试使用多种不同的方法后,我找不到达到预期结果的方法。使用 fieldSubTpl 配置或覆盖 valueToRaw() 方法似乎是我最有希望的方法。但是,我无法让他们中的任何一个工作。

我找到了 ExtJS 6 所需行为的工作示例 here 。如果您选择多个值,组合框将显示“x 选定的值”,而不是简单地连接选定的值。

如何在 ExtJS 4.1.1 中获得相同的结果?

最佳答案

您需要使用displayTpl配置combo .

在此FIDDLE ,我在ExtJS 4.x中创建了与您在ExtJS 6.x中提供的相同的示例。它运行良好。希望这将指导您或帮助您实现所需的解决方案。

Ext.create('Ext.form.Panel', {
renderTo: Ext.getBody(),
title: 'Multiple Seletion Example in ExtJS 4.x for combo box',
items: [{
xtype: 'combo',
margin: 20,
fieldLabel: 'Character Name',
store: Ext.create('Ext.data.Store', {
fields: ['id', 'name'],
data: [{
id: 0,
name: 'John Snow'
}, {
id: 1,
name: 'Tyrion Lannister'
}, {
id: 2,
name: 'Morgan Dexter'
}, {
id: 3,
name: 'Lannister'
}, {
id: 4,
name: 'Silicon Vally'
}]
}),
displayField: 'name',
/*
If you use using this then initially you will see {0 values selected}
displayTpl: new Ext.XTemplate('{[values instanceof Array ? values.length === 1 ? values[0]["' + combo.displayField + '"] : values.length + " values selected" : values]}'),
*/
valueField: 'id',
queryMode: 'local',
multiSelect: true,
filterPickList: true,
listeners: {
render: function (combo) {
//Use propery {displayTpl}
//The template to be used to display selected records inside the text field. An array of the selected records' data will be passed to the template.
combo.displayTpl = new Ext.XTemplate('{[values instanceof Array ? values.length === 1 ? values[0]["' + combo.displayField + '"] : values.length + " values selected" : values]}');
/*
you can also use like below function
combo.displayTpl = new Ext.XTemplate('{[this.getDisplayField(values)]}', {
getDisplayField: function (values) {
if (Ext.isArray(values)) {
var len = values.length;
return len == 1 ? values[0].name : (len + ' values selected');
}
return values;
}
});*/
}
}
}]
});

关于javascript - ExtJS 4.1.1 : Custom display text for multi-select combobox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47629567/

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