I\'m using Jaspersoft Studio 6.2.0 and JasperReports 6.2.0 library.
I have a report and in the details section some of the records in the table may
This is normally avoided by using splitType="Prevent"
on the JRBand
Prevent The band starts to render normally, but if the bottom of the page is reached without finishing the band, the whole contents of the band that are already being laid out are moved to the next page. If the band does not fit on the next page, the split occurs normally, as band split prevention is effective only on the first split attempt
example
<detail>
<band height="20" splitType="Prevent">
... your text fields ..
</band>
</detail>