-1

我有一个 extjs 网格面板。它包含分页工具栏。

这是分页工具栏代码:

                xtype: 'pagingtoolbar',
            store: 'courseStoreForGrid',   // same store GridPanel is using
            pageSize: 2,
            displayInfo: true,
            displayMsg: 'Displaying topics {0} - {1} of {2}',
            emptyMsg: "No topics to display",

这是我的商店代码:

                var itemsPerPage = 2; 
                 var courseStoreForGrid= Ext.create('Ext.data.Store',{
              fields : [ 'id','name','minimumAge','maximumAge','suggestedDurationDays','tags'],
             storeId:'courseStoreForGrid',
             remoteSort:true,
             pageSize:itemsPerPage,
             sortInfo: 
             {
              field: "name",
              direction: "ASC"
            },

//autoLoad:true, proxy :{ type : 'rest', url : 'http://localhost:8080/WebService/iTest/course/PagingCourse.json', method : 'GET', scope : this, reader : {类型:'json',根:'课程',totalProperty:'totalCount'}

        }

    });
                    courseStoreForGrid.load({params:{start:0, limit:2}});

我的数据库中共有 7 条记录。当我第一次在该网格上执行分页时,它在不工作后工作正常。请帮我。

4

1 回答 1

0

您使用的是哪个版本的 Ext-js?

在下面的 URL 中,您可以找到带有“网格面板”和“分页工具栏插件”示例的官方 EXT-JS 4.x 文档

http://docs.sencha.com/ext-js/4-1/#!/api/Ext.grid.Panel

http://docs.sencha.com/ext-js/4-1/#!/api/Ext.toolbar.Paging

于 2012-12-24T05:20:43.377 回答