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



At 11:12 AM 2/7/02 -0300, you wrote:
>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>
<xsl:template match="myelement">
<xsl:copy>
         <xsl:copy-of select="@*"/>
                 <xsl:attribute name="color">blind</xsl:attribute>
                 <xsl:apply-templates/>
         </xsl:copy>
</xsl:template>



>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

Salience B.V.

Ronald Heller
Technisch Consultant

Coltbaan 27b
3439 NG Nieuwegein
Telefoon 030 60 56 675
Telefax  030 60 56 324
Website www.salience.nl
ronald@salience.nl
Mobiel   06 20 41 25 77
ICQ 135511393



 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]