這是我的商店。Ext Js 2.1 Combobox Anymatch過濾器不工作
var studentStore = new Ext.data.SimpleStore ({
fields :['value','name'],
data :studentArray
})
這是我的ext js combobox。
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,方法覆蓋。但這些都不起作用。
自動加載如何連接到存儲過濾器? – Veer 2014-11-06 11:39:30