|
Subject: Re: [xsl] InnerElement attribute needs to be set for parent From: Martin Honnen <Martin.Honnen@xxxxxx> Date: Sat, 10 May 2008 13:46:44 +0200 |
How to copy the attributes from the <property> name and value to <propertyList> with name as the attribute ?
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template> <xsl:template match="propertyList">
<xsl:copy>
<xsl:apply-templates select="property"/>
</xsl:copy>
</xsl:template> <xsl:template match="property">
<xsl:attribute name="{@name}">
<xsl:value-of select="@value"/>
</xsl:attribute>
</xsl:template>Martin Honnen http://JavaScript.FAQTs.com/
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| Re: [xsl] InnerElement attribute ne, Mukul Gandhi | Thread | Re: [xsl] InnerElement attribute ne, Mukul Gandhi |
| [xsl] testing for numbers of nodes, Charles Muller | Date | Re: [xsl] testing for numbers of no, Martin Honnen |
| Month |