I have a ExtJS ComboBox that contains a bunch of options, but when one option is selected, all the other options vanish!
这是一个简单的示例: http: //jsfiddle.net/6FUpX/24/ - 从下拉列表中选择一些内容,然后尝试选择其他内容。
有人可以告诉我这有什么问题吗?
I have a ExtJS ComboBox that contains a bunch of options, but when one option is selected, all the other options vanish!
这是一个简单的示例: http: //jsfiddle.net/6FUpX/24/ - 从下拉列表中选择一些内容,然后尝试选择其他内容。
有人可以告诉我这有什么问题吗?
您应该在组合中使用triggerAction: 'all'。在您的代码中,您在商店中使用它。
var combo = new Ext.form.ComboBox({
store: new Ext.data.JsonStore({
storeId: 'racksStore',
fields: ['RackId', 'Fullname'],
autoLoad: false,
root: 'Racks',
//<-- remove from store
data: rackJson
}),
displayField: 'Fullname',
valueField: 'RackId',
triggerAction: 'all', //<--- Use here
emptyText: 'Select a name...',
width: 135,
editable: false,
mode: 'local'
});