DisplayTag:即使没有数据可显示也显示标题
我正在使用 java displaytag 库。即使不存在数据,我也需要在 html 页面中显示标题。我怎样才能启用它?
I am using the java displaytag library. I need to show the headers in the html page even if no-data is present. How can I enable it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将属性
basic.empty.showtable
的值更改为true
。您可以通过使用
标记内的
标记在特定表实例上执行此操作,也可以全局设置它通过在 displaytag.properties 文件中设置它来针对整个 Web 应用程序。阅读 http://displaytag.sourceforge.net/1.2/configuration.html 了解如何它有效,发现其他有用的属性。
You need to change the value of the property
basic.empty.showtable
totrue
. You may do it on a specific table instance, by using the<display:setProperty>
tag inside the<display:table>
tag, or you may set it globally for the whole web application by setting it in your displaytag.properties file.Read http://displaytag.sourceforge.net/1.2/configuration.html to understand how it works, discover the other useful properties.