同一页面上多个表和可排序列的问题
我在同一 .gsp 页面上遇到三个或更多表的问题。 我想在一页上显示三个表,两个表都有可排序的列。不幸的是,这不起作用,因为像排序和顺序这样的变量似乎是全局定义的,并且会对每个表生效。 因此,如果两个表都有该列,则两个表都会排序。如果没有,则会抛出错误。 有没有办法在一页上显示三个表,可以独立排序,或者有什么好方法?
I have a problem with three or more tables on the same .gsp page.
I want to show three tables on one page, both with sortable columns. Unfortunaly that does not work, because variables like sort and order seem to be globally definded and will take effect on every table.
So if both tables have the column, both are sorted. If one has not, an error is thrown.
Is there any way to have three tables one page, which can be independently sorted, or what is a good way to to this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用远程分页插件。
基督教
You could use the remote-pagination plugin.
Christian
我已经在 Grails 应用程序中完成了此操作。我将 sortableColumn 标记的源代码复制到我自己的 taglib 中,并将第二个表的排序和顺序参数的名称更改为例如 sort2 和 order2。相应地更改新的 sortableColumn 标记中的名称。
I have done this in our Grails app. I copied the source code of the sortableColumn tag into my own taglib and changed the names of the second table's sort and order params to eg sort2 and order2. Change the names in your new sortableColumn tag accordingly.