There is a case when either of the table grows and I want that page to break at a certain point when the total row count (of both tables accumulated) grows beyond a certain point eg. 40.
Each page is designed as a grid Grid1 has two tables:
Table 1: I click on the table and go to the onCreate of script tab.
table1 = this.getRowData().getExpressionValue('row[count]'); // row count contains the number of rows
reportContext.setPersistentGlobalVariable("table1", table1);
Table 2: I click on the table and go to the onCreate of script tab.
table2 = this.getRowData().getExpressionValue('row[count1]');
reportContext.setPersistentGlobalVariable("table2", table2);
table1 = reportContext.getPersistentGlobalVariable("table1");
sum = table1 + table2;
if(sum > 30){
this.getStyle().pageBreakBefore = "always";
}
onCreate OF TABLE 2: