简体   繁体   English

ExtJS 网格面板使用分页工具栏

[英]ExtJS Grid Panel using Paging Toolbar

I am trying to make ext JS grid panel using Paging Toolbar but not able to figure out where the problem is coming.我正在尝试使用分页工具栏制作 ext JS 网格面板,但无法弄清楚问题出在哪里。 Can anyone help me out in this-谁能帮我解决这个问题-

var myData = {
   record : [
              { name : "Record 0", column1 : "0", column2 : "0" },
              { name : "Record 1", column1 : "1", column2 : "1" },       
              { name : "Record 2", column1 : "2", column2 : "2" },
            ]
    };

var fields = [
             {name: 'name', mapping : 'name'},
             {name: 'column1', mapping : 'column1'},
             {name: 'column2', mapping : 'column2'}
          ];

      var store = new Ext.data.Store ({
            id  :'simpsonsStore',
            fields:['name', 'column1', 'column2'],
            pageSize: 5, 
            data: myData,
            reader: {
                root: 'record',
                type: 'json'
            }
        });



      // Column Model shortcut array
      var cols = [
        { id : 'name', header: "Record Name", width: 50, sortable: true, dataIndex: 'name'},
        {header: "column1", width: 50, sortable: true, dataIndex: 'column1'},
        {header: "column2", width: 50, sortable: true, dataIndex: 'column2'}
      ];

      store.load({
            params:{
                start:0,
                limit: 5
            }
        });

      // declare the source Grid
        var grid = new Ext.grid.GridPanel({
            ddGroup          : 'gridDDGroup',
            store            : store,
            columns          : cols,
            enableDragDrop   : true,
            stripeRows       : true,
            autoExpandColumn : 'name',
            width            : 650,
            height           : 325,
            region           : 'west',
            title            : 'Data Grid',
            selModel         : new Ext.grid.RowSelectionModel({singleSelect : true}),
            dockedItems: [{
                xtype: 'pagingtoolbar',
                store: store,   // same store GridPanel is using
                dock: 'bottom',
                displayInfo: true
            }]

        });

        var displayPanel = new Ext.Panel({
            width       : 650,
            height      : 300,
            layout      : 'column',


           renderTo : Ext.getBody(),
            items    : [
              grid
            ],
            bbar    : [
              '->', 
              {
                text    : 'Reset Example',
                handler : function() {
                  gridStore.loadData(myData);
                }
              }
            ]
          });

In the displayPanel 's bbar, handler is calling loadData , on the gridStore variable which is not defined in the code snippet you've posted.displayPanel的 bbar 中,处理程序正在调用您发布的代码片段中未定义的gridStore变量的loadData

I guess you need to call loadData on the store variable declared here:我猜你需要在这里声明的 store 变量上调用loadData

var store = new Ext.data.Store

You could also call grid.getStore().loadData();您也可以调用grid.getStore().loadData();

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM