Hi,
I am rendering my report directly as PDF output and would like to hide the page header on every page that is not the 1st page.
I have already tried adding this to the onRender script of the Grid that I placed in the Page Header segment
//first nested grid
if( pageNumber > 1 ){
this.getStyle().display = "none";
}
from
https://www.eclipse.org/forums/index.php/t/457836/
but it does not seem to have any effect.
Any other ideas on how to achieve this?
Max