1

これは私の店です。

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、メソッドオーバーライドを追加してみました。しかし、これらは機能していません。

4

2 に答える 2