I have a report book containing multiple sub report parts etc. Part of it is generated in java part in jrxml. It's a main report calling several other sub reports in parts..
All is working fine except for the page numbering on the TOC.
I'm using exactly the same syntax as used in the example, however if the TOC is for example 2 pages the page numbers are not correct ...
In the examples i see this code :
<textField evaluationTime="Auto" hyperlinkType="LocalAnchor">
<reportElement style="HeadingIndex1" x="470" y="5" width="45" height="20" uuid="a31e80f3-f1fa-4643-adbe-77a61c7b9051">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<textElement textAlignment="Right" verticalAlignment="Bottom"/>
<textFieldExpression><![CDATA[$V{PAGE_NUMBER} + $F{pageIndex} + 1]]></textFieldExpression>
<hyperlinkAnchorExpression><![CDATA[$F{label}]]></hyperlinkAnchorExpression>
</textField>
I suppose the +1 is to add the page of the TOC to the total so the page is matched....
Anyone a working example for a report with TOC spanned multiple pages ?
My own report code is using a group with a header to call the TOC subreport part once, the actual data is generated in the details part.
<group name="first">
<groupExpression><![CDATA[1]]></groupExpression>
<groupHeader>
<part evaluationTime="Report">
<partNameExpression><![CDATA["Overview"]]></partNameExpression>
<p:subreportPart xmlns:p=";
xsi:schemaLocation=" .xsd" usingCache="true">
<parametersMapExpression><![CDATA[$P{REPORT_PARAMETERS_MAP}]]></parametersMapExpression>
<subreportParameter name="REPORT_DATA_SOURCE">
<subreportParameterExpression><![CDATA[new net.sf.jasperreports.engine.data.JRBeanCollectionDataSource($P{overview})]]></subreportParameterExpression>
</subreportParameter>
<subreportExpression class="net.sf.jasperreports.engine.JasperReport"><![CDATA[$P{declaration.report.detail.overview.report}]]></subreportExpression>
</p:subreportPart>
</part>
<part evaluationTime="Report">
<property name="net.sf.jasperreports.bookmarks.data.source.parameter" value="REPORT_DATA_SOURCE"/>
<partNameExpression><![CDATA["Table of Contents"]]></partNameExpression>
<p:subreportPart xmlns:p=";
xsi:schemaLocation=" .xsd" usingCache="true">
<parametersMapExpression><![CDATA[$P{REPORT_PARAMETERS_MAP}]]></parametersMapExpression>
<subreportExpression class="net.sf.jasperreports.engine.JasperReport"><![CDATA[$P{declaration.report.detail.toc.report}]]></subreportExpression>
</p:subreportPart>
</part>
</groupHeader>
</group>
<detail>
<part>
<printWhenExpression><![CDATA[Boolean.valueOf(($F{singleDetails} != null && $F{singleDetails}.size() > 0))]]></printWhenExpression>
<partNameExpression><![CDATA[$F{tocTitle}]]></partNameExpression>
<p:subreportPart xmlns:p=";
xsi:schemaLocation=" .xsd" usingCache="true">
<parametersMapExpression><![CDATA[$P{REPORT_PARAMETERS_MAP}]]></parametersMapExpression>
<subreportParameter name="REPORT_DATA_SOURCE">
All generation works fine except for the page nubers in he TOC, the hyperlinking is working also, when I click the title the pdf jups towards the right page..
Part of the jrxml for TOC:
<?xml version="1.0" encoding="UTF-8"?>
<jasperReport xmlns="; xmlns:xsi=";
xsi:schemaLocation=" .xsd"
name="TOCReport"
pageWidth="595"
pageHeight="842"
columnWidth="455"
leftMargin="70"
rightMargin="70"
topMargin="40"
bottomMargin="60">
<property name="ireport.zoom" value="1.0"/>
<property name="ireport.x" value="0"/>
<property name="ireport.y" value="0"/>
<style name="defaultStyle" isDefault="true" mode="Opaque" hAlign="Left" vAlign="Middle" markup="styled" fontName="DejaVu Sans" fontSize="10"/>
<parameter name="declaration.report.toc" class="java.lang.String" isForPrompting="false"/>
<field name="level" class="java.lang.Integer"/>
<field name="label" class="java.lang.String"/>
<field name="pageIndex" class="java.lang.Integer"/>
<pageHeader>
<band height="65">
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="defaultStyle" x="0" y="15" width="455" height="50"/>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="14" isBold="true"/>
</textElement>
<textFieldExpression class="java.lang.String"><![CDATA[$P{declaration.report.toc}]]></textFieldExpression>
</textField>
</band>
</pageHeader>
<detail>
<band height="31">
<textField evaluationTime="Auto" isBlankWhenNull="true" hyperlinkType="LocalAnchor">
<reportElement style="defaultStyle" x="430" y="0" width="20" height="20" stretchType="ContainerBottom" mode="Opaque"/>
<textElement textAlignment="Right" verticalAlignment="Bottom"/>
<textFieldExpression class="java.lang.Integer"><![CDATA[$V{PAGE_NUMBER} + $F{pageIndex}]]></textFieldExpression>
<hyperlinkAnchorExpression><![CDATA[$F{label}]]></hyperlinkAnchorExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="" hyperlinkType="LocalAnchor">
<reportElement style="defaultStyle" stretchType="ContainerBottom" mode="Transparent" x="0" y="0" width="425" height="20" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Left" verticalAlignment="Bottom">
<font isItalic="true"/>
</textElement>
<textFieldExpression class="java.lang.String"><![CDATA[$F{label}.contains("`") ? $F{label}.substring(0, $F{label}.indexOf("`")): $F{label} ]]></textFieldExpression>
<hyperlinkAnchorExpression><![CDATA[$F{label}]]></hyperlinkAnchorExpression>
</textField>
</band>
</detail>
</jasperReport>
I've asked the same question on the tibco jaspersoft forum, but no answer on it: /