I have a BIRT 232 report that I need to add a line to the bottom o开发者_C百科f the last page. I can add a footer. But that adds the line right after the data. I need the line to be at the bottom of the page.
Any ideas?
Do you only need the line last page or at the bottom of every page? If the latter would work add the line to the masterpage. If you don't want the line on every page just add the following script in the onRender function of the line element in the masterpage.
if(pageNumber < totalPage){
this.getStyle().display ="none"
}
精彩评论