easyUI中的DataGrid设置分页的时候 pageSize无论设置什么值 出来的记录都是全部记录 有遇到的么?谢谢! |
|
20分 |
你是前台分页后台分页?后台分页的话你能否接受到pageSize?你返回的记录数为多少? |
后台代码:long all = this.getCount(); jsonArray.add(jsonobj); 前台代码:$(function() { //$(p).pagination({ // pageSize: 5,//每页显示的记录条数,默认为10 // pageList: [5,10,15],//可以设置每页记录条数的列表 // beforePageText: “”第””,//页数文本框前显示的汉字 // afterPageText: “”页 共 {pages} 页””, // displayMsg: “”当前显示 {from} – {to} 条记录 共 {total} 条记录””, function displayMsg() { |
|
….我丧失继续追踪这个问题的勇气了 一瞬间的 我给你发个例子吧
|
|
没有独立的例子啊!
|
|
int start = (page - 1) * rows; int max = start + rows; MEntry<Integer, List<Task>> entry = taskService.findTasks(new String[] {}, conditions, start, max); maingird = new GridDataModel<Task>(entry.getKey().longValue(), entry.getValue()); 这个是接受前台参数并且查询的地方 那个GridDataModel是我们自定义的类 /** * OMUI分页对象 * * @author linfeng * @param <T> * 持有对象类型 */ public class GridDataModel<T> { /** 显示的总数 */ private Long total; /** 行数据 */ private List<T> rows; /** * 默认构造器 */ public GridDataModel() { } /** * 参数初始化构造器 * * @param total * 显示的总数 * @param rows * 行数据 */ public GridDataModel(Long total, List<T> rows) { this.total = total; this.rows = rows; } public List<T> getRows() { return rows; } public void setRows(List<T> list) { this.rows = list; } public Long getTotal() { return total; } public void setTotal(Long total) { this.total = total; } } 这个是那个类 我用的是Struts2 将结果逆序列化成json串 返回给了页面 |
|
我这有返回数据 就是分页的时候 只显示全部数据 不是按pageSize的值来进行分页!
|
|
你并没有将全部数据返回给他 他咋会有全部数据呢… |
|
我这就是显示全部数据 就是pageSize不起作用!
|
|
你淡定淡定 先把我的话理解清楚 首先前台给你提供了你这次查询需要的参数 肯定有一个页码和一个页长 |
|
我的代码主要思想这样的后台是接收当前页和每页条数作为分页查询条件,前台是设置 dataGrid的相应属性pageSize pageList pagination 等 我前后都看了 就是只显示全部数据 找不到问题出哪儿了 郁闷的
|
|
…我问了那么多次 可是你还是不告诉我我要的东西… |
|
问题已解决!谢谢!
|
|
问题是怎么解决的啊?求解释,我遇到了同样的问题啊
|