jQuery easyUI 分页(Pagination)用法

发布于 2021-11-21 15:29:15 字数 770 浏览 938 评论 3

需要知道点击下一页,上一页,首页,尾页可以得到相应数据的代码,以及一些见解!Thanks!

$(function(){
$("#pp").pagination({  
  total:${paging.totalCount},
  pageSize:${paging.pageSize},
  pageNumber:${paging.pageNo},
pageList:[2,4,6],
loading:false,
showPageList:true,
showRefresh:true,
   
  onSelectPage:function(pageNumber, pageSize){
  $(this).pagination('loading');
  $(this).pagination('loaded');
  },
  onChangePageSize:function(pageSize){
  $(this).pagination('loading');
  $(this).pagination('loaded');
  },
  onBeforeRefresh:function(){ 
$(this).pagination('loading'); 
$(this).pagination('loaded');
}

  });

});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

爱的故事 2021-11-25 06:00:18

请问如果自定义实现refrech刷新数据和分页控制了?

剑心龙吟 2021-11-25 04:10:37

请问做过类似的项目吗 ? 需要详细的代码。

不需要这英文文档,谢谢!

风柔一江水 2021-11-24 18:27:21

Properties

NameTypeDescriptionDefault
totalnumberThe total records, which should be setted when pagination is created.1
pageSizenumberThe page size.10
pageNumbernumberShow the page number when pagination is created.1
pageListarrayUser can change the page size. The pageList property defines how many size can be changed.[10,20,30,50]
loadingbooleanDefines if data is loading.false
buttonsarrayDefines custom buttons, each button contains two properties:
iconCls: the CSS class which will show a background image
handler: a handler function when button is clicked
null
showPageListbooleanDefines if to show page list.true
showRefreshbooleanDefines if to show refresh button.true
beforePageTextstringShow a label before the input component.Page
afterPageTextstringShow a label after the input component.of {pages}
displayMsgstringDisplay a page information.Displaying {from} to {to} of {total} items

Events

NameParametersDescription
onSelectPagepageNumber, pageSizeFires when user select a new page. callback function contains two parameter:
pageNumber: the new page number
pageSize: the new page size
onBeforeRefreshpageNumber, pageSizeFires before the refresh button is clicked, return false to cancel the refresh action.
onRefreshpageNumber, pageSizeFires after refresh.
onChangePageSizepageSizeFires when user change the page size.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文