Click here to Skip to main content
6,630,586 members and growing! (17,020 online)
Email Password   helpLost your password?
Languages » XML » XML/XSLT     Intermediate License: The Code Project Open License (CPOL)

HTML reporting with page break, using XSL and CSS

By Martin Garcia

One possible way to build an HTML report that has a dynamic number of pages.
XML, CSS, HTML, XSLT
Posted:16 Mar 2008
Views:23,116
Bookmarked:33 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
9 votes for this article.
Popularity: 3.73 Rating: 3.90 out of 5

1
1 vote, 11.1%
2
2 votes, 22.2%
3
1 vote, 11.1%
4
5 votes, 55.6%
5

Preview of report, version A:

Preview of Report A

Preview of report, version B:

Preview of Report B

Introduction

This article describes one possible way to build an HTML report that has a dynamic number of pages. I used this technique to solve break-page issue while developing XSL reports on a Web application.

Background

The layout is designed to be printed on the A4 paper size. The data, stored in an XML file, is passed as input for the XSL transformation.

The Code

We can analyze two cases of the same invoice report where the number of pages depends on the order quantity. The first case is a report that contains a document header (recipient address) on all pages. In the second case, the document header is only on the first page. The main difference between the cases is the calculation of the size of the detail section (OrderRows, in this sample).

In order to obtain the report, I wrote the code as below:

  1. ReportHeader - XSL variable containing the image logo and the tiTitle of the document.
  2. DocumentRecipient - XSL variable containing information about the customer.
  3. OrderHeader - XSL variable containing information about the order.
  4. OrderRowsHeader - XSL variable containing the header table about the ordered products.
  5. OrderRows - XSL for-each on order rows data. Exactly 40 rows for each page on report version A, 40 rows on first page and 46 rows on all next pages on report version B.
  6. Filler - XSL template containing the blank rows necessary to reach the size of the page.
  7. ReportFooter - XSL variable containing the footer of the report (business address).
  8. OrderTotals - XSL variable containing the total amount of the invoice (printed only on the last page).

The CSS page-break command:

  <style type="text/css">
    .pagebreak {page-break-after: always;}
  </style>

Points of Interest

Use of page-break: how to calculate the number of rows and exactly point to put a page-break command.

Case of report version A:

    <xsl:for-each select="Order/OrderRows/OrderRow">
        <table class="tabledetails" cellspacing="0" style="table-layout:fixed">
            <tr>
                <td class="tdmargin" />
                <td style="width:70px" align="right" class="blueline">
                    <xsl:value-of select="ProductID" />
                    <xsl:value-of select="translate(' ', ' ', '&#160;')"/>
                </td>
                <td class="blueline" style="width:220px" >
                    <xsl:value-of select="ProductName" />
                    <xsl:value-of select="translate(' ', ' ', '&#160;')"/>
                </td>
                <td style="width:50px" align="right" class="blueline">
                    <xsl:value-of select="Quantity" />
                    <xsl:value-of select="translate(' ', ' ', '&#160;')"/>
                </td>
                <td style="width:50px" align="right" class="blueline">
                    <xsl:value-of select="concat('$ ', UnitPrice)" />
                    <xsl:value-of select="translate(' ', ' ', '&#160;')"/>
                </td>
                <td style="width:50px" align="right" class="blueline">
                    <xsl:value-of select="concat(Discount, ' %')" />
                    <xsl:value-of select="translate(' ', ' ', '&#160;')"/>
                </td>
                <td style="width:100px" align="right" class="blueline">
                    <xsl:value-of select="concat('$ ', ExtendedPrice)" />
                    <xsl:value-of select="translate(' ', ' ', '&#160;')"/>
                </td>
                <td class="tdmargin" />
            </tr>
        </table>
        <xsl:if test="(position() mod 40) = 0 ">
            <!--40 rows per page-->
            <xsl:call-template name="Filler">
                <xsl:with-param name="fillercount" select="1" />
            </xsl:call-template>

            <xsl:copy-of select="$ReportFooter" />

            <br class="pagebreak" />
            
            <xsl:copy-of select="$ReportHeader" />

            <xsl:call-template name="Filler">
                <xsl:with-param name="fillercount" select="1" />
            </xsl:call-template>

            <xsl:copy-of select="$OrderRecipient"/>

            <xsl:call-template name="Filler">
                <xsl:with-param name="fillercount" select="1" />
            </xsl:call-template>

            <xsl:copy-of select="$OrderHeader"/>

            <xsl:call-template name="Filler">
                <xsl:with-param name="fillercount" select="1" />
            </xsl:call-template>

            <xsl:copy-of select="$OrderRowsHeader"/>

        </xsl:if>
    </xsl:for-each>

Case of report version B:

     <xsl:for-each select="Order/OrderRows/OrderRow">        
      <!-- ... --> 
    <xsl:choose>
            <!-- case of only one page-->
            <xsl:when test="(position() mod 40 = 0 and position() = 40)">
                <!--40 rows per page-->
                <xsl:call-template name="Filler">
                    <xsl:with-param name="fillercount" select="1" />
                </xsl:call-template>
    
                <xsl:copy-of select="$ReportFooter" />
    
                <br class="pagebreak" />
    
                <xsl:copy-of select="$ReportHeader" />
    
                <xsl:call-template name="Filler">
                    <xsl:with-param name="fillercount" select="2" />
                </xsl:call-template>
    
                <xsl:copy-of select="$OrderRowsHeader"/>
                
            </xsl:when>
            <!-- case of more than one page-->
            <xsl:otherwise>
                <xsl:if test="(40 - position() mod 46) = 0 and 
                              position() &gt; (40 + position() mod 40)">
                    <!--46 rows per page-->
                    <xsl:call-template name="Filler">
                        <xsl:with-param name="fillercount" select="1" />
                    </xsl:call-template>
    
                    <xsl:copy-of select="$ReportFooter" />
    
                    <br class="pagebreak" />
    
                    <xsl:copy-of select="$ReportHeader" />
    
                    <xsl:call-template name="Filler">
                        <xsl:with-param name="fillercount" select="2" />
                    </xsl:call-template>
    
                    <xsl:copy-of select="$OrderRowsHeader"/>
    
                </xsl:if>
    
            </xsl:otherwise>
        </xsl:choose>
    </xsl:for-each>

The filler template:

    <!-- Template Filler-->
    <xsl:template name="Filler">
        <xsl:param name="fillercount" select="1"/>
        <xsl:if test="$fillercount > 0">
            <table class="tabledetails">
                <tr>
                    <td>
                        <xsl:value-of select="translate(' ', ' ', '&#160;')"/>
                    </td>
                </tr>
            </table>
            <xsl:call-template name="Filler">
                <xsl:with-param name="fillercount" select="$fillercount - 1"/>
            </xsl:call-template>
        </xsl:if>
    </xsl:template>

Simple use of the filler template: add blank rows:

  <!-- Add two blank row -->
  <xsl:call-template name="Filler">
    <xsl:with-param name="fillercount" select="2" />
  </xsl:call-template>

Use of the filler template: how to calculate the number of blank rows on the last page:

    <xsl:choose>
        <!-- case of only one page-->
        <xsl:when test="count(Order/OrderRows/OrderRow) &lt;= 40">
            <xsl:call-template name="Filler">
                <xsl:with-param name="fillercount" 
                   select="40 - (count(Order/OrderRows/OrderRow))"/>
            </xsl:call-template>
        </xsl:when>
        <!-- case of more than one page-->
        <xsl:otherwise>
            <xsl:call-template name="Filler">
                <!--(Rows per page = 40) -  (Rows in current page) - 
                    (Total Order rows = 3 ) - (Filler Row = 1)-->
                <xsl:with-param name="fillercount" select="40 - 
                   ( ( count(Order/OrderRows/OrderRow)-40 ) mod 40 ) - 3 - 1"/>
            </xsl:call-template>
        </xsl:otherwise>
    </xsl:choose>

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Martin Garcia


Member

Occupation: Web Developer
Location: Australia Australia

Other popular XML articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 11 of 11 (Total in Forum: 11) (Refresh)FirstPrevNext
QuestionPDF output PinmemberTelson Cheung12:19 5 May '09  
GeneralItems with severall lines Pinmemberpedroalvesimediata5:45 20 Apr '09  
GeneralRe: Items with severall lines PinmemberMartin Garcia6:54 20 Apr '09  
GeneralRe: Items with severall lines PinmemberMartin Garcia7:02 20 Apr '09  
QuestionGood article but got a query PinmemberPrav4u23:29 25 Nov '08  
AnswerRe: Good article but got a query PinmemberMartin Garcia23:58 25 Nov '08  
GeneralRe: Good article but got a query PinmemberPrav4u1:14 26 Nov '08  
GeneralRe: Good article but got a query PinmemberPrav4u1:18 26 Nov '08  
Generaldoubt on this PinmemberMaha_M20:07 7 Nov '08  
GeneralRe: doubt on this PinmemberMartin Garcia23:51 25 Nov '08  
GeneralNice Pinmemberneena20:47 16 Mar '08  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 16 Mar 2008
Editor: Smitha Vijayan
Copyright 2008 by Martin Garcia
Everything else Copyright © CodeProject, 1999-2009
Web18 | Advertise on the Code Project