简体   繁体   中英

group expression in jasper reports

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>
    <groupFooter>
        <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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM