Different header on the first page of report [message #1016150] |
Tue, 05 March 2013 04:20  |
Eclipse User |
|
|
|
I need to have one header on the first page and another header on the next pages of report.
I am using 3.7.1 version.
1. I inserted a grid with two rows to the master page header.
2. I put one new grid into each of the rows.
First nested grid for the first page header, second nested grid for the next
pages header.
3. I set an onRender scripts:
//first nested grid
if( pageNumber > 1 ){
this.getStyle().display = "none";
}
//second nested grid
if( pageNumber == 1 ){
this.getStyle().display = "none";
}else{
this.getStyle().display = "block";
}
This works ok with the sample database, from JDBC Data Source.
But I need XML Data Source and with that it does not work at all.
It seems as if with the sample database table, the onRender event gets called on every page, but with my XML Data Source it only gets called once.
Please, If you could help me solve this mysterious problem I would appreciated it very much.
erisa
|
|
|
|
|
Re: Different header on the first page of report [message #1017320 is a reply to message #1016150] |
Mon, 11 March 2013 11:13  |
Eclipse User |
|
|
|
You need to set your page layout to "fixed", by selecting a blank spot in the report layout, going to the general section of the property editor, and changing it from auto layout to fixed layout. Then, change all of your tables to have a page break interval of 0 by selecting each table and changing the value in the property editor. Then, when you run to PDF, using frameset, your masterpage headers will behave properly. Hope this helps.
|
|
|
Powered by
FUDForum. Page generated in 0.05458 seconds