我在RDLC报告的Tablix中有一个父组和多个子元素。 对于某些父母来说,子元素的数量不是固定的,它还会转到下一页。
当前,输出如下所示(请注意,我的RDLC报告作为.NET解决方案存在于服务中)
page 1 start here
Parent Group 1 name
child group 1
child group 2
Parent Group 2 name
child group 1
child group 2
page 2 start here
child group 3
child group 4
Parent Group 3 name
child group 1
child group 2
但是我想要这样的输出:
page 1 start here
Parent Group 1 name
child group 1
child group 2
Parent Group 2 name
child group 1
child group 2
page 2 start here
Parent Group 2 name
child group 3
child group 4
Parent Group 3 name
child group 1
child group 2
我该如何实现?我不希望每个家长组都在单独的页面上。 这样,我的意思是我不想在每个组实例之间使用Page Break属性。
我的主要目的是希望我的父母组名称在每个页面上重复 如果我的子元素正在展开多个页面。
答案 0 :(得分:0)
我认为您需要根据主题上的this forum指定RepeatOnNewPage
属性。如果您需要有关操作方法的详细信息,请参见this StackOverflow answer。