Click here to Skip to main content
15,867,308 members
Articles / Web Development / HTML

HTML Reporting with Page Break, using XSL and CSS

Rate me:
Please Sign up or sign in to vote.
3.96/5 (12 votes)
16 Mar 2008CPOL2 min read 104.1K   3K   40   13
One possible way to build an HTML report that has a dynamic number of pages

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 Title 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:

HTML
<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:

XML
<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:

XML
 <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:

XML
<!-- 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:

XML
<!-- 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:

XML
<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)


Written By
Software Developer (Senior) BrisConnections Operations Pty Ltd
Australia Australia
Senior Software Developer on Microsoft and Unix-like environments. Senior Data Analyst and Database Developer in particular on the MSSQL and MySQL platforms

Comments and Discussions

 
Questionhow to use this Pin
aldo hexosa27-Oct-15 11:40
professionalaldo hexosa27-Oct-15 11:40 
QuestionPDF output Pin
Telson Cheung5-May-09 11:19
Telson Cheung5-May-09 11:19 
AnswerRe: PDF output Pin
thatraja31-Mar-14 2:32
professionalthatraja31-Mar-14 2:32 
GeneralItems with severall lines Pin
pedroalvesimediata20-Apr-09 4:45
pedroalvesimediata20-Apr-09 4:45 
GeneralRe: Items with severall lines Pin
Martin Garcia20-Apr-09 5:54
Martin Garcia20-Apr-09 5:54 
GeneralRe: Items with severall lines Pin
Martin Garcia20-Apr-09 6:02
Martin Garcia20-Apr-09 6:02 
QuestionGood article but got a query Pin
Prav4u25-Nov-08 22:29
Prav4u25-Nov-08 22:29 
AnswerRe: Good article but got a query Pin
Martin Garcia25-Nov-08 22:58
Martin Garcia25-Nov-08 22:58 
GeneralRe: Good article but got a query Pin
Prav4u26-Nov-08 0:14
Prav4u26-Nov-08 0:14 
I am very bad in xsl
if you dont mind can you give me small example

Regards

Praveen

If you have knowledge, let others light their candles in it.

GeneralRe: Good article but got a query Pin
Prav4u26-Nov-08 0:18
Prav4u26-Nov-08 0:18 
Generaldoubt on this Pin
Maha_M7-Nov-08 19:07
Maha_M7-Nov-08 19:07 
GeneralRe: doubt on this Pin
Martin Garcia25-Nov-08 22:51
Martin Garcia25-Nov-08 22:51 
GeneralNice Pin
neena16-Mar-08 19:47
neena16-Mar-08 19:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.