[Home] [By Thread] [By Date] [Recent Entries]
Arulraj wrote:
How to copy the attributes from the <property> name and value to <propertyList> with name as the attribute ? Here is a sample stylesheet: <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></xsl:stylesheet> -- Martin Honnen http://JavaScript.FAQTs.com/
|

Cart



