xsl-list
[Top] [All Lists]

Re: [xsl] XML->HTML tables with blank cells ...

2006-07-11 02:24:33
I thought you might be needing a generic solution (when number of
columns are variable).

Here is a solution for this:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

<xsl:output method="html" indent="yes" />

<xsl:template match="/worksheet">
  <html>
    <head>
      <title/>
    </head>
    <body>
      <table>
        <tr>
          <xsl:for-each select="row[(_at_)number = '0']/col">
            <th><xsl:value-of select="." /></th>
          </xsl:for-each>
        </tr>
        <xsl:variable name="n" select="count(row[(_at_)number = '0']/col) - 1" 
/>
        <xsl:for-each select="row[not(@number = '0')]">
          <tr>
            <xsl:call-template name="GenerateRows">
              <xsl:with-param name="m" select="$n" />
              <xsl:with-param name="n" select="$n" />
              <xsl:with-param name="row" select="." />
            </xsl:call-template>
          </tr>
        </xsl:for-each>
      </table>
    </body>
  </html>
</xsl:template>

<xsl:template name="GenerateRows">
 <xsl:param name="m" />
 <xsl:param name="n" />
 <xsl:param name="row" />

 <xsl:if test="$m &gt;= 0">
   <td><xsl:value-of select="$row/col[(_at_)number = ($n - $m)]" /></td>
   <xsl:call-template name="GenerateRows">
     <xsl:with-param name="m" select="$m - 1" />
     <xsl:with-param name="n" select="$n" />
     <xsl:with-param name="row" select="$row" />
   </xsl:call-template>
 </xsl:if>
</xsl:template>

</xsl:stylesheet>

Regards,
Mukul

On 7/11/06, Carmen Pancerella <carmen(_at_)ca(_dot_)sandia(_dot_)gov> wrote:
Hello.

I'm very new to XSLT and I need to create an HTML table from XML
using XSLT.  The XML looks like this:

<?xml version="1.0" encoding="UTF-8"?>
<worksheet>
   <row number="0">
     <col number="0">Name</col>
     <col number="1">Grade</col>
     <col number="2">Phone</col>
     <col number="3">City</col>
     <col number="4">State</col>
   </row>
   <row number="1">
     <col number="0">Anna</col>
     <col number="1">3</col>
     <col number="2">555-5555</col>
     <col number="3">Livermore</col>
     <col number="4">CA</col>
   </row>
   <row number="2">
     <col number="0">David</col>
     <col number="1">4</col>
     <col number="3">Livermore</col>
     <col number="4">CA</col>
   </row>
   <row number="3">
     <col number="0">Jane</col>
     <col number="1">5</col>
   </row>
</worksheet>

I want a resulting HTML table that accounts for the fact that every
piece of data is in the correct column but not every row has data
in all columns.  For example, in my example, Anna has all data,
but David does not have a phone number, and Jane only has a grade.

Thanks for you help.

Carmen

---------------------------------------------------------------------
Carmen Pancerella, PhD                           
carmen(_at_)ca(_dot_)sandia(_dot_)gov
Distributed Systems Research & Development
Sandia National Laboratories
---------------------------------------------------------------------

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>