I've a report which has a has 5 columns on each page and I have a group defined which shows columns related to
A | B | C | D | E - main column
X | Y | Z - group - A is the key
I have my query ORDER BY A, but when it is displayed it doesn't print the results in next page if A is changed.
Following is how I have a group defined.
<group name="A" isResetPageNumber="true" >
<groupExpression><![CDATA[$F{A}]]></groupExpression>
<groupHeader>
<band/>
</groupHeader>
<groupF开发者_StackOverflow社区ooter>
<band/>
</groupFooter>
</group>
does A need to be part of the group?
Use:
<group name="A" isStartNewPage="true" isReprintHeaderOnEachPage="true"
isResetPageNumber="false" >
I answered my own question. I had to add A with X, Y, and Z in order for group to work.
精彩评论