JSP 显示标签排序页面重新加载
设置:我有一个 Struts Web 应用程序,我使用 displaytag 元素来做我所有的餐桌工作。 每列都是可排序的。
情况:当我在长页面上单击排序时,它会排序,但会将您放在页面顶部。
问题:如何使用锚点或其他方法返回表格而不是页面顶部。
补充:我已经查看了 ajax-tags:display 来包装 display:table 标签,但想尝试使用我已经拥有的内容(也许是 html 锚点?)来完成此操作,而不是包含另一个依赖性。
Setup: I have a Struts web application where I use displaytag elements to do all of my table work. Each column is sortable.
Situation: When I click sort, on a long page, it sorts, but drops you at the top of the page.
Question: How do I use an anchor or some other method to come back to the table rather than the top of the page.
Addition: I have looked at ajax-tags:display to wrap the display:table tag, but would like to attempt to do this with just what I have already (html anchors maybe?) rather than including another dependency.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这比我最初想象的要容易得多。 您需要做的就是将每个 display:table 标记的 requestURI 设置为 # 和表的 id。
例如
更改为
This was a whole lot easier than I first thought. All you need to do is set the requestURI of each display:table tag to # and the id of the table.
For example
Changed to