Missing header when paginating [message #156272] |
Tue, 25 April 2006 23:59 |
Arun 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
|
|
|
Powered by
FUDForum. Page generated in 0.05855 seconds