Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » BIRT » Missing header when paginating
Missing header when paginating [message #156272] Tue, 25 April 2006 23:59
Arun is currently offline ArunFriend
Messages: 3
Registered: July 2009
Junior Member
Hi BIRT gurus,

We are using BIRT 2.0 version in our portal application and integrating at
API level as shown below

IRunTask runTask = reportEngine.createRunTask( reportDesign);
runTask.setParameterValues( params);
runTask.setAppContext( contextMap);
runTask.run( reportDocument);

IReportDocument iReportDocument = reportEngine.openReportDocument(
reportDocument);
IRenderTask task = reportEngine.createRenderTask( iReportDocument);

. . .
options.setOutputFormat( format);
options.setOutputStream( byteArrayOutputStream );
options.setEmbeddable( true);
options.setHtmlPagination( true);
options.setActionHandle( new SerenaHTMLActionHandler());
task.setRenderOption( options);

// render page based on the passed in pageIndex
task.render( String.valueOf( pageIndex));


This works fine when rendering the first page in the tabular report-
headers and data show up as expected. But on subsequent pages, the column
headers are not rendered. Is this a bug or am I missing any settings/calls.

Thanks
Arun
Previous Topic:Preview as web viewer or PDF
Next Topic:How to set multiple values for parameters
Goto Forum:
  


Current Time: Thu Aug 01 01:40:16 GMT 2024

Powered by FUDForum. Page generated in 0.03068 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top