This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: Adding attributes


this'll work:

<xsl:template match="myelement">
	<xsl:copy>
		<xsl:copy-of select="attribute::*"/>
		<xsl:attribute name="color">blind</xsl:attribute>
		<xsl:copy-of select="descendant::*"/>
	</xsl:copy>
</xsl:template>

-Jeff

-----Original Message-----
From: Ivan Rubin Ayma [mailto:Iayma@mcsla.com.ar]
Sent: Thursday, February 07, 2002 9:13 AM
To: xsl-list@lists.mulberrytech.com
Subject: [xsl] Adding attributes


Hello,

How can I add an attribute to an element and copy the attributes it
already had?

Suppose I had an XML:

<myelement type="10">
	<somedata/>
</myelement>

and with the transformation I need to get:

<myelement type="10" color="blind">
	<somedata/>
</myelement>

Thanks,

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]