0
        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();、ボタンをクリックします。しかし、すべてが機能していません。

どうすればそれを行うことができますか

4

1 に答える 1