如何在dojox.datagrid中实现分页

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在dojox.datagrid中实现分页相关的知识,希望对你有一定的参考价值。

我有一个在dojox.datagrid显示分页的请求,我试过搜索但没有运气。想知道在dojox.datagrid中是否可以分页是否有人可以确认一下。

答案

你必须使用

dojo.require("dojox.grid.enhanced.plugins.Pagination");

在你的网格中

var grid = new dojox.grid.EnhancedGrid({
        id: 'grid',
        store: store,
        structure: layout,
        rowSelector: '20px',

        plugins: {
          pagination: {
              pageSizes: ["25", "50", "100", "All"],
              description: true,
              sizeSwitch: true,
              pageStepper: true,
              gotoButton: true,
                      /*page step to be displayed*/
              maxPageStep: 4,
                      /*position of the pagination bar*/
              position: "bottom"
          }
        }
    }, document.createElement('div'));

以上是关于如何在dojox.datagrid中实现分页的主要内容,如果未能解决你的问题,请参考以下文章

如何在 PHP 中实现分页? [关闭]

如何在 Spring MVC 3 中实现分页 [关闭]

如何在 Xamarin 表单中实现分页

如何在nodejs + postgresql中实现分页

如何在排名查询中实现分页?

如何在后端自定义查询中实现分页