xtype: 'combo',
id: 'example',
triggerAction: 'all',
forceSelection: true,
editable: false,
allowBlank: false,
fieldLabel: 'example',
mode: 'remote',
displayField:'name',
valueField: 'id',
store: Ext.create('Ext.data.Store', {
fields: [
{name: 'id'},
{name: 'name'}
],
//autoLoad: false,
proxy: {
type: 'ajax',
url: 'example.php',
reader: {
type: 'json',
root: 'rows'
}
}
}
})
,listeners: {
render: function(combo) {
combo.store().load(); // not working
}
}
私がautoload: true
それをうまく使っているなら。しかし、負荷を制御したいので、レンダー機能を使用するcombo.store().load();
かExt.getCmp('example').store.load();
、ボタンをクリックします。しかし、すべてが機能していません。
どうすればそれを行うことができますか