我有一个网格面板,其代码是:

{
            xtype: 'gridpanel',
            x: 10,
            y: 10,
            autoScroll : true,

           // height: 300,
            width: 300,
            title: 'Grid Panel',

            store: 'peopleStore',

            columns: [
                {
                    xtype: 'gridcolumn',
                    dataIndex: 'name',
                    text: 'Name'
                },
                {
                    xtype: 'gridcolumn',
                    dataIndex: 'gender',
                    text: 'Gender'
                },
                {
                    xtype: 'numbercolumn',
                    dataIndex: 'age',
                    text: 'Age'
                }
            ]
        }


我的商店结构是:

 Ext.define('ThemeApp.store.peopleStore', {
        extend: 'Ext.data.Store',

            model: 'ThemeApp.model.peopleModel',
            storeId: 'peopleStore',


            proxy: {
                type: 'localstorage',
                id: 'PeopleInfo'
           }


    });


我有一个添加行按钮。但是只显示25行,其余行排在这25行之后。有谁知道这个问题吗?

最佳答案

当我的应用程序出现类似问题时,我通过将代理服务器的limitParam设置为空字符串“”来解决此问题,这是文档建议的,如果您不想发送限制参数。

也可能是商店的pageSize的结果。

10-06 03:41