I have a small detail JasperReports's report developed with iReport. I have the classic Header band and well a row with the values, but below I need to put another textField which is in fact very long up to 500 characters namely Observations. In the Detail row one field can have up to 100 characters (namely CONCEPT) which can cause textField stretch vertically this is working OK. The problem appears when the Concept textField grows vertically the Observations which is below the Detail row stays in the same positions cause both to overlap each other...
Here is some picture of the results so far.
My report has following design (view in iReport):
And the generated report look like this:
As you can see the Observations textField if overlapping the wrap line of the CONCEPTO textField.
UPDATE after following the tips from Alex K
i am receving this output....
Here is the code of Detail band:
<detail>
<band height="36" splitType="Stretch">
<textField pattern="" isBlankWhenNull="true">
<reportElement x="349" y="0" width="61" height="19"/>
<textElement textAlignment="Center"/>
<textFieldExpression class="java.lang.String"><![CDATA[$F{c04}+"€"]]></textFieldExpression>
</textField>
<textField pattern="" isBlankWhenNull="true">
<reportElement x="410" y="0" width="53" height="19"/>
<textElement textAlignment="Center"/>
<textFieldExpression class="java.lang.String"><![CDATA[$F{c05}+"€"]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement x="240" y="-1" width="57" height="20"/>
<textElement textAlignment="Right"/>
<textFieldExpression class="java.lang.String"><![CDATA[$F{c06}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement x="68" y="0" width="172" height="19"/>
<textElement/>
<textFieldExpression class="java.lang.String"><![CDATA[$F{c03}]]></textFieldExpression>
</textField>
<textField pattern="" isBlankWhenNull="true">
<reportElement x="297" y="0" width="51" height="19"/>
<textElement textAlignment="Center"/>
<textFieldExpression class="java.lang.String"><![CDATA[$F{c02}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement isPrintRepeatedValues="false" x="0" y="0" width="67" height="19"/>
<textElement/>
<textFieldExpression class="java.lang.String"><![CDATA[$F{c07}]]></textFieldExpression>
</textField>
<textField pattern="" isBlankWhenNull="true">
<reportElement positionType="Float" x="1" y="18" width="554" height="18"/>
<textElement textAlignment="Left"/>
<textFieldExpression class="java.lang.String"><![CDATA[$F{c08}]]></textFieldExpression>
</textField>
</band>
</detail>