使用 Java 对象填充子报表值
我有一个对象列表。下面是对象列表中的值的示例。
A X
A Y
A Z
B P
B Q
B R
意味着值 X、Y、Z 位于 A 组下,P、Q、R 位于 B 组下。 通过 iReports,我可以列出对象中的值(如上所述)。
我想做的是我想在报告中以分组方式显示行,如下所示。
A
X
Y
Z
B
P
Q
R
我知道这可以在子报告中完成。但我不知道如何通过我当前拥有的对象列表来做到这一点。请提出任何想法。
谢谢。
I have a List of Object. Below is the example of values in the List of Objects.
A X
A Y
A Z
B P
B Q
B R
Meaning the values X,Y,Z are under group A and P,Q,R are under the group B.
Thru iReports i am able to list the values in the object (as above).
What i am trying to do is i want to display rows in grouped fashion in the reports .like below.
A
X
Y
Z
B
P
Q
R
I know it can be done in subreports. But i don't know how to do it thru the list of object what i have currently. Please suggest any idea.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在子报表中,您可以添加一个条件,其中如果对象具有第一个值 X(作为参数传递给子报表的值),则它将被写入,否则将被忽略。
然后,在主报表中,您可以为每个组调用一次子报表,传递键值和完整的对象集合。
At your subreport you can add a condition, in which, if an object has a first value X (a value passed as a param to the subreport), it will be written, and otherwise ignored.
Then, at the main report you can invoke the subreport once for every group, passing the key value and the full collection of objects.