-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
没法分页怎么办 #9
Comments
树结构是不支持分页的。 想要分页的话要重新实现分页方法, 提供一个思路就是先查询出所有数据,然后根据一级节点进行分页。 原始的分页配置不适用在分页上。 |
在bootstrapTable-treeview.js的initBody方法中大概415行左右位置加上以下代码,实现了页面按照父节点分页
在bootstrap-table.js的initPagination方法中在给 this.options.totalRows赋值的语句后(1319行左右)加上以下代码,实现总页数按照父节点的长度配置。
checkbox还是有问题。。。 |
分页只能根据一级节点进行分页,而且不能后台分页。 想要支持后台分页的话必须改造后台方法,通过page参数查询的必须是一级节点的数据。 这个与业务相关性比较大,需要再具体项目中进行扩展。 |
用了树状表格。。怎么分页
The text was updated successfully, but these errors were encountered: