1

コンソールはクリアです。グリッドは空です (列のタイトルのみが表示されます)。データがストアに正しくロードされているかどうかを確認するにはどうすればよいですか? ストアの autoLoad メソッドが何らかの理由でトリガーされていないように思えます。グリッドは次のとおりです。

Ext.define('NameSpace.view.Clients', {
    requires: [
        'Ext.tree.Panel',
        'Ext.grid.Panel'        
    ],
    extend: 'Ext.tab.Panel',
    title: 'Clients',
    alias: 'widget.viewClients',    

    items: [
        {
            xtype: 'panel',
            title: 'All Clients',            

            layout: {
                type: 'hbox',
                align: 'stretch'
            },

            items: [
                {
                    xtype: 'treepanel',
                    title: 'Tree Panel',
                    width: 200,
                    resizable: true                    
                },
                {
                    xtype: 'gridpanel',
                    title: 'Clients List',

                    store: Ext.getStore('storeClients'),

                    flex: '1',
                    columns: [                        
                        { text: 'Name', dataIndex: 'first_name' },
                        { text: 'Last Name', dataIndex: 'last_name' },
                        { text: 'Phone Number', dataIndex: 'phone' }
                    ]
                }
            ]
        }
    ],

    initComponent: function () {
        this.callParent(arguments);
    }
});

そして、ここにストアがあります (モデルには、extend と fields 構成のみが含まれます):

Ext.define('NameSpace.store.Clients', {
    extend: 'Ext.data.JsonStore',

    proxy: {
        type: 'ajax',
        url: 'http://test.local/client',
        reader: {
            type: 'json',
            root: 'records' 
        }
    },

    autoLoad: true,

    constructor: function (config) {
        this.initConfig(config);
    }
});

Ext.create('NameSpace.store.Clients', {
    model: 'Clients',
    storeId: 'storeClients'    
});
4

4 に答える 4

1

なぜストアコンストラクターをオーバーライドするのですか? 実際にそれを行う必要がある場合はthis.callParent(arguments)、コンストラクターに追加する必要があります。そうしないと、元のコンストラクター (多くのことを行います) が実行されません。

于 2013-07-14T15:51:19.187 に答える
0

あなたはただ変更する必要があります

 store: Ext.getStore('storeClients')

これに:

store: 'Clients'
于 2014-03-11T06:09:52.503 に答える