Right now I am working with XSLT to create a report in XSL-FO. I have different different templates in my XSLT files for different section in the report. While generating the report I am getting a particular section on half page and other half on the second page; so we have decided to move the whole section to a new page. Now I am really confused what tag I should add to the template in XSLT so that it can be on a new page. I am really new to XSLT and need help.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
If you can suport HTML reports, use the XLST to create an HTML docuent and then use CSS to manage your page breaks
Trying to "guess" where to put page breaks in HTML is a challenge due to font sizes, etc. Usually it's best to use a printer friendly format (e.g. PDF) if you want nicely printed material. However, HTML+CSS can give you a quick and dirty solution. Edit Your comment mentions XSL-FO. Perhaps the break-before property would help |
||||