View Single Post
  #5 (permalink)  
Old 09-15-2009, 01:23 PM
mwilliams mwilliams is online now
Senior Member
 
Join Date: May 2008
Posts: 4,469
Send a message via Yahoo to mwilliams
Default

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.
__________________
Regards,

Michael
http://twitter.com/mwilliams_actu
Reply With Quote