这是我的商店。
var studentStore = new Ext.data.SimpleStore ({
fields :['value','name'],
data :studentArray
})
这是我的 ext js 组合框。
ddlStudentCombo = new Ext.form.ComboBox({
id:'ddlDocCat',
emptyText:'Type..',
hideTrigger:true,
width:140,
store: studentStore,
applyTo:'ddlStudent',
displayField :'name',
forceSelection:true,
selectOnFocus: true,
listWidth:320,
mode: 'local',
listClass: 'x-combo-list-small',
typeAhead:true
});
我尝试添加侦听器, doQuery ,方法覆盖。但这些都行不通。