Rafid,
Sorry for the delay. If you put the following script in your beforeFactory script, you should be able to change the page break interval of your table to whatever value you specify, depending on output.
format = reportContext.getOutputFormat();
if (format = "pdf"){
reportContext.getReportRunnable().designHandle.getDesignHandle().findElement("mytable").setProperty("pageBreakInterval",0);
}
The table in this example was named "mytable". This test was done in BIRT 2.5.0.
|