In my requirement, there is a table with multiple rows.
First
<table>
<heading1.1> <heading1.2> <heading1.3> <heading1.4> <heading1.5> <heading1.6> <heading1.7>
<rows1> <data>
<rows2> <data>
<rows3> <data>
.
.
.
.
rows n> <data>
This kind of structure is my table. This entire table is dynamic means with table heading the number of rows is also dynamic.
when we add tables data than with table heading also rows are also adding. Like below we adding second and third.
Second
<table>
<heading1.1> <heading1.2> <heading1.3> <heading1.4> <heading1.5> <heading1.6> <heading1.7>
<rows1> <data>
<rows2> <data>
<rows3> <data>
.
.
.
.
rows n> <data>
Third
<table>
<heading1.1> <heading1.2> <heading1.3> <heading1.4> <heading1.5> <heading1.6> <heading1.7>
<rows1> <data>
<rows2> <data>
<rows3> <data>
.
.
.
.
rows n> <data>
hence I am using List in that I have created the entire table with rows. but when I am trying to increase the height of the list I am getting an error
Like your element reach outside the band area.
So is there any way without increasing the height of the page we can split the List data.