datagrid没分页
这两天写了个查询功能,datagrid中设置maplist 和count,结果发现没分页,用hql查询的列表却没发现分页问题,不知道啥原因,请高手解答。java的写法是:
List<Map<String,Object>> maplist=systemService.findForJdbc(sqlStb1.toString(), new Object[]{starttime,endtime});
Long count = systemService.getCountForJdbcParam(sqlStb2.toString(),new Object[]{starttime,endtime});
dataGrid.setTotal(count.intValue());
dataGrid.setResults(maplist);
TagUtil.datagrid(response, dataGrid);
前端传进来的datagrid对象属性中page=1, rows =10,结果页面网格中700多条记录全部显示出来,没有分页,这是什么原因?
参考jeecg默认代码写法 你这个问题解决了吗? admin 发表于 2017-9-5 14:01 static/image/common/back.gif
参考jeecg默认代码写法
我也遇到这个问题了,我给datagrid 设置的结果集为list,也不分页,你说的默认代码写法,意思是不支持其他对象的分页了么?只针对datagrid这种默认对象? 应该是写的不对,请参考官方minidao列表例子
你成功了吗,我用默认的sqlserver数据库也没有分页,能加我QQ1323397207,联系一下吗
页:
[1]