[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Dynamically building a HTML table from variable row da

Subject: Dynamically building a HTML table from variable row data
From: "Michael Leditschke" <ammd@xxxxxxxxxxxxxx>
Date: Sun, 16 Dec 2001 02:25:12 +1000
html table select row
I am attempting to populate an HTML table
where the column names are generated by the
set of element names on each row. Not all
elements occur on all rows.

My problem is thus to dynamically work out
the total set of columns (using the element
names) and dynamically position each piece
of data in the correct column.

For example, assume XML looks like

<BLOCK>
  <ROW>
    <A>1</A>
    <B>2</B>
  </ROW>
  <ROW>
    <A>9</A>
    <B>3</B>
    <C>4</C>
  </ROW>
  <ROW>
    <A>5</A>
    <D>6</D>
    <E>7</E>
  </ROW>
<BLOCK>

I'd like to end up with a table something like

A  B  C  D  E
1  2
9  3  4
5        6  7


Thus far I have code something like

<xsl:template match="BLOCK">
  <xsl:variable name="ColumnNames"
select="ROW/*[not(local-name()=local-name(preceding::ROW/*)))]"/>
  <table border="10">
    <tr>
      <xsl:for-each select="$ColumnNames">
        <th>
          <xsl:value-of select="local-name()"/>
        </th>
      </xsl:for-each>
    </tr>
  </table>
 </xsl:template>

I know its wrong because the local-name function is going
to process the first node only. So it handles the <A>
element ok but not any of the others.

I'm trying to follow the
examples I've seen of grouping but most seem to be based
on element/attribute content rather than element names.

Various wild and whacky schemes have come to mind but
before I looked for a zebra, I thought I'd check if anyone
knew of a horse.

Any pointers much appreciated.

Regards
Michael


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.