显示标签导出选项横幅 - 放置在表格顶部
我正在使用 displaytag 标签库,到目前为止它的效果非常好。 但是,我没有看到将导出横幅放在表格顶部而不是底部的简单选项或方法。 如何才能做到这一点?
谢谢, 罗伊
I'm using the displaytag tag library, and it's worked amazingly so far. However, i don't see a simple option or way to put the export banner at the top of the table instead of the bottom. How can this be accomplished?
Thanks,
Roy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我和你有同样的问题。
我使用 jquery 解决了这样的问题:
我的 displaytag.properties :
我在 JSP 中使用 DisplayTag 创建的表:
jquery 中的函数:
结果:
I had the same problem as you.
I solved using jquery like this :
My displaytag.properties :
My table created with DisplayTag in my JSP :
A function in jquery :
And the result :
请添加以下代码:
Please add below code :
我们已经能够使用一些针对“exportTypes”id 的 css 将导出菜单放置在顶部。 我不是我们团队中做这件事的前端人员,所以可能还有更多,但看起来你可以做类似的事情:
其中framed-outer和guttered只是我们使用的桌子周围的一些div id。
在 displaytag.properties 中,我们定义了:
这可能不是全部,但我可以看到在我们的项目中可以做到这一点。 希望这个对你有帮助。
We've been able to place the export menu at the top using some css against 'exportTypes' id. I'm not the Front End guy that did it in our team, so there might be more to it, but it looks like you can do something like:
Where framed-outer and guttered are just some div ids around the table we use.
In the displaytag.properties we've defined:
Again that may not be the whole story but that's what I can see that'd do it in our project. Hope this helps a bit.
我知道这已经有 10 年历史了,但为了以防万一有人去寻找一个简单而有效的答案,以下内容对我有用。 我注意到 displaytag 将所有内容都放在 TBODY 中,因此我决定尝试将 Export 包装在 THEAD 中,果然它有效。
我将以下内容放入 displaytag.properties 文件中:
I know this is 10 years old, but just in case someone goes looking for a simple and working answer the following worked for me. I noticed that displaytag placed everything in the TBODY, so I decided to try and wrap the Export in THEAD and sure enough it worked.
I placed the following in the displaytag.properties file: