Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Displaying a table column by column

From: cedric.louyot@-----.---
To: NULL
Date: 2/14/2007 7:18:00 AM

Hi,

I have an xml file looking like :
<col>
  <line>11</line>
  <line>21</line>
</col>
<col>
  <line>12</line>
  <line>22</line>
</col>

Using the xsl file :
<table>
  <xsl:for-each select=3D"/*">
    <tr>
      <xsl:for-each select=3D"line">
        <td>
          <xsl:value-of select=3D"node()"/>
        </td>
      </xsl:for-each>
    </tr>
  </xsl:for-each>
</table>

I manage to print out the following table (printed line by line) :
11   21
12   22

But I need to print out (printed column by column):
11   12
21   22

Does anybody have a hint on how to do that ?
I need to do that automatically because my real table is far bigger
than the one I've shown here as an example.

Thanks a lot,

C=E9dric



transparent
Print
Mail
Digg
delicious
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent