报告详细信息带未填充
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道该线程很旧,但我想我仍然可以分享我的解决方案:
我正在使用 Java Beans 的集合。
如果您传递一个空的主数据集合,则永远不会渲染细节带,即使您只有静态数据。
这是因为详细信息用于呈现此主要数据集合。如果您不传递任何主要数据,则渲染它们根本没有意义。
有关详细信息,请参阅此线程:当数据集不为空时不显示详细信息带< /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.
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.