xml editor

Supported platforms

Compatible with Windows7 & Mac OS X Snow Leopard

Ready for data server software
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

[xsl] Add values to table


Subject: [xsl] Add values to table
From: "James Steven" <JSteven@xxxxxxxxxxxxxxxxxxxxx>
Date: Wed, 8 Sep 2004 15:41:00 +0100

Hello
I have the following xml

<root>
  <Table name="abc">
    <Column name="987">
      <Value>h</Value>
    </Column>
    <Column name="123">
      <Value>a</Value>
    </Column>
    <Column name="456">
      <Value>g</Value>
    </Column>
  </Table>

  <Table name="ghi">
    <Column name="jkl">
      <Value>5</Value>
    </Column>
  </Table>

  <Table name="mno">
    <Column name="pqr">
      <Value>7</Value>
    </Column>
   <Column name="1011">
      <Value>p</Value>
    </Column>
  </Table>

  <Table name="stu">
    <Column name="vwx">
      <Value>3</Value>
    </Column>
  </Table>
</root>

Using this I would like to create a table like that below:

abc
Column   Value
987       h
123       a
456       g

ghi
Column   Value
jkl       5

mno
Column   Value
pqr	    7
1011      p

stu
Column   Value
vwx       3

To try and create this table I have used the xsl below but this only creates
the following:

abc
Column  Value

ghi
Column  Value

mno
Column  Value

stu
Column  Value


How can I adjust the xsl below to include values for Column and Value?
Thanks.


<xsl:template match="ROOT">
<xsl:for-each select="Table">
 <fo:table-row>
   <fo:table-cell>
    <fo:block>
	<xsl:value-of select="@name"/>
    </fo:block>
   </fo:table-cell>
 </fo:table-row>
 <fo:table-row>
   <fo:table-cell>
	<fo:block>
	Column
	</fo:block>
   </fo:table-cell>
   <fo:table-cell>
     <fo:block>
	Properties
     </fo:block>
   </fo:table-cell>
   </fo:table-row>
<xsl:for-each select="Table/Column">
   <fo:table-row>
    <fo:table-cell>
     <fo:block>
	<xsl:value-of select="@name"/>
     </fo:block>
    </fo:table-cell>
   </fo:table-row>
</xsl:for-each>
</xsl:for-each>
</xsl:template match>


Current Thread
Keywords
XML Editor | XML Author | WYSIWYG Editors | Schema Editor | XSD Documentation | XSL/XSLT Editor | XQuery | XML Databases | SVN Client
© 2002-2011 SyncRO Soft Ltd. All rights reserved. | Sitemap | Privacy Policy | This website was created & generated with <oXygen/>®XML Editor