如何在 dojox.datagrid 中实现分页
Posted
技术标签:
【中文标题】如何在 dojox.datagrid 中实现分页【英文标题】:how to implement pagination in dojox.datagrid 【发布时间】:2019-02-13 19:37:34 【问题描述】:我有一个在 dojox.datagrid 中显示分页的请求,我尝试搜索但没有运气。想知道dojox.datagrid中是否可以分页,请有人确认一下。
【问题讨论】:
【参考方案1】:你必须使用
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 ,您提供了增强网格的解决方案。你能为datagrid提供解决方案吗?以上是关于如何在 dojox.datagrid 中实现分页的主要内容,如果未能解决你的问题,请参考以下文章