如何隐藏 ireport 上没有数据的表?
如何隐藏没有数据的表格(不包括在布局中)?
How do I hide a table (not include in layout) that has no data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何隐藏没有数据的表格(不包括在布局中)?
How do I hide a table (not include in layout) that has no data?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
如果表位于其自己的带区上,我通常会在带区上设置打印条件,仅当该带区中的任何对象有数据时才显示数据。假设您的表格是这样的:
打印时表达式看起来像这样:
如果您指的是使用集合构建的子报表,那么我只需检查以确保集合不为空:
将打印时条件带线上隐藏数据,并导致报表折叠未使用的空间。
If you have the table on its own band, what I typically do is set a print when condition on the band that only shows the data if any object in that band has data. Say your table is something like this:
The print when expression would look something like this:
If you're referring to a subreport built using a collection, then I just check to make sure the collection isn't empty:
Putting the print when condition on the band line hides the data, and causes the report to collapse the unused space.