|
Subject: Re: [xsl] Replicating parent elements in table with children. From: Wendell Piez <wapiez@xxxxxxxxxxxxxxxx> Date: Fri, 01 Nov 2002 15:17:51 -0500 |
<xsl:template match="Table">
<table>
<xsl:apply-templates select="Table1"/>
<xsl:if test="not(Table1)">
<tr><xsl:apply-templates/></tr>
</xsl:if>
</table>
</xsl:template><xsl:template match="Table1">
<tr>
<xsl:apply-templates select="../AvgScore | DeliveryID"/>
</tr>
</xsl:template><xsl:template match="AvgScore | DeliveryID">
<td>
<xsl:apply-templates/>
</td>
</xsl:template>I need help with the looping/xpath approach to make this happen.
Cheers, Wendell
<NewDataSet> <Table> <AvgScore>323</AvgScore> <Table1> <DeliveryID>4102</DeliveryID> </Table1> <Table1> <DeliveryID>4103</DeliveryID> </Table1> <Table1> <DeliveryID>4104</DeliveryID> </Table1> </Table> <Table> <AvgScore>975</AvgScore> </Table> </NewDataSet>
<table> <tr><td>323</td><td>4102</td></tr> <tr><td>323</td><td>4103</td></tr> <tr><td>323</td><td>4104</td></tr> <tr><td>975</td></tr> </table>
====================================================================== Wendell Piez mailto:wapiez@xxxxxxxxxxxxxxxx Mulberry Technologies, Inc. http://www.mulberrytech.com 17 West Jefferson Street Direct Phone: 301/315-9635 Suite 207 Phone: 301/315-9631 Rockville, MD 20850 Fax: 301/315-8285 ---------------------------------------------------------------------- Mulberry Technologies: A Consultancy Specializing in SGML and XML ======================================================================
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| [xsl] Replicating parent elements i, Alan K. Gay | Thread | Re: [xsl] Replicating parent elemen, Mike Brown |
| Re: [xsl] strange encoding problem, Gregory Murphy | Date | Re: [xsl] Replicating parent elemen, Mike Brown |
| Month |