Subject:Page Break when Dynamic table column(node) value changes Author:sankha das Date:01 Jun 2005 07:25 PM Originally Posted: 01 Jun 2005 07:19 PM
Hi Everyone,
I am trying to group data in a tabular format with pagebreaks when first column value stops repeating. Here's my xml :
<resultset>
<row>
<lob_nm>commercial</lob_nm>
<id>123</id>
</row>
<row>
<lob_nm>cib</lob_nm>
<id>28</id>
</row>
<row>
<lob_nm>cib</lob_nm>
<id>12</id>
</row>
.....
.....
</resultset>
I want mt result to be displayed as a table in pdf using fop :
lob_nm | id
_______|_____
_cib___|_ 28_
_cib___|__12_
............... page break here as no more "cib" to navigate
lob_nm | id
__________|_____
|
commercial| 123
Thanks in advance
Shon