如何隐藏 ireport 上没有数据的表?

发布于 2024-11-01 01:04:26 字数 28 浏览 1 评论 0原文

如何隐藏没有数据的表格(不包括在布局中)?

How do I hide a table (not include in layout) that has no data?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧人 2024-11-08 01:04:26

如果表位于其自己的带区上,我通常会在带区上设置打印条件,仅当该带区中的任何对象有数据时才显示数据。假设您的表格是这样的:

item1 item2 item3

打印时表达式看起来像这样:

item1 != null || item2 != null || item3 != null

如果您指的是使用集合构建的子报表,那么我只需检查以确保集合不为空:

!subreportCollection.isEmpty()

将打印时条件带线上隐藏数据,并导致报表折叠未使用的空间。

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:

item1 item2 item3

The print when expression would look something like this:

item1 != null || item2 != null || item3 != null

If you're referring to a subreport built using a collection, then I just check to make sure the collection isn't empty:

!subreportCollection.isEmpty()

Putting the print when condition on the band line hides the data, and causes the report to collapse the unused space.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文