我想使用一维数组作为组合框的存储。它知道数组中有多少元素。但是列表中充满了空白文本行。
Ext.getCmp('variablesAttributesPanel').add(
{
xtype: 'combo',
id: variables[j].getTitle() + 'ValuesCombo',
store: variables[j].values
});
variables[j].values 是我想使用的数组。每当我尝试使用商店时,它都不会填充任何内容。
有任何想法吗?