| 
 
Subject: transposing a table From: "Pollington, Lee (ELSLON)" <lee.pollington@xxxxxxxxxxxxx> Date: Thu, 23 Nov 2000 13:07:57 -0000  | 
Hi, we've been think about the best way to transpose a table (turn it by
90degs). It has an equal number of columns per row. I've come up with the
solution below. Does anyone have a better one or ideas for improving this
one?
Lee
<xsl:template match="/">
  <root>
    <xsl:apply-templates select="/root/row[1]/col" mode="row"/>
  </root>
</xsl:template>
<xsl:template match="col" mode="row">
  <row>						
    <xsl:variable name="pos" select="position()"/>
    <xsl:apply-templates select="/root/row/col[$pos]" mode="col"/>
  </row>
</xsl:template>
<xsl:template match="col" mode="col">
  <col><xsl:value-of select="."/></col>
</xsl:template>
 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
| Current Thread | 
|---|
  | 
| <- Previous | Index | Next -> | 
|---|---|---|
| Re: trying to bypass empty elements, Jeni Tennison | Thread | Re: transposing a table, Daniel Barclay | 
| RE: how to access the text of just , Kay Michael | Date | looking for docs on DOM Level 2, desimonp | 
| Month |