gpt4 book ai didi

javascript - 将数据加载到商店后,Extjs 组合框为空

转载 作者:行者123 更新时间:2023-11-30 07:57:21 25 4
gpt4 key购买 nike

你能帮我弄清楚为什么代码不起作用吗?加载数据后组合框为空

var groupComboBoxStore = Ext.create('Ext.data.Store', {
fields: ['value', 'name']
});
var groupComboBox = new Ext.form.field.ComboBox({
fieldLabel: 'Groups',
store: groupComboBoxStore,
displayField: 'name',
valueField: 'value',
renderTo: Ext.getBody()
});
groupComboBoxStore.loadData([{name: 'name1', value: 'value1'}], false);

最佳答案

看起来是 Extjs 中的错误或未处理的实现我将代码更改为

var groupComboBox = new Ext.form.field.ComboBox({
fieldLabel: 'Groups',
store: []
});
groupComboBox.store.loadData([['value1'], ['value2']], false);

关于javascript - 将数据加载到商店后,Extjs 组合框为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36620533/

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