报告详细信息带未填充

发布于 2024-12-29 10:16:37 字数 60 浏览 1 评论 0原文

我是 PB 新手,正在检索我的报告。我的页眉和页脚填充 但不是我的细节带。我的论点似乎是正确的。任何想法:

I am new to PB and retrieving my report. My header and footer populate
but not my detail band. My arguments seem to be working correctly. Any ideas:

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

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

发布评论

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

评论(1

未央 2025-01-05 10:16:37

我知道该线程很旧,但我想我仍然可以分享我的解决方案:

我正在使用 Java Beans 的集合。

// Using compiled version(.jasper) of Jasper report to generate PDF
jasperPrint = JasperFillManager.fillReport(inStream, parameters, new JRBeanCollectionDataSource(mainCollection,false));

如果您传递一个空的主数据集合,则永远不会渲染细节带,即使您只有静态数据。

这是因为详细信息用于呈现此主要数据集合。如果您不传递任何主要数据,则渲染它们根本没有意义。

有关详细信息,请参阅此线程:当数据集不为空时不显示详细信息带< /a>

看起来有一个选项可以绕过这个限制。

I know the thread is old but I thought I could share my solution all the same :

I am using collection from Java Beans.

// Using compiled version(.jasper) of Jasper report to generate PDF
jasperPrint = JasperFillManager.fillReport(inStream, parameters, new JRBeanCollectionDataSource(mainCollection,false));

If you pass an empty main data collection, then detail bands are never rendered, even if you have only static data on them.

This is because details are used to rendered this main data collection. If you don't pass any main data, then no point in rendering them at all.

See this thread for more info : Detail Band Not Shown When Dataset NOT Empty

Looks like there is an option to bypass this limitation.

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