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: Lost Attributes?


Ok,
Well, I figured out one bug. I guess you cannot use the xsl:copy-of
when you call an attribute value but MUST use xsl:value-of?


THIS WORKS:==============

<xsl:template match="C1005" mode="hey">
  <xsl:element name="PHYSDESC">
    <xsl:attribute name="ENCODINGANALOG">
      <xsl:value-of select="@LINK"/>
    </xsl:attribute>
    <xsl:value-of select="@SC300"/>
  </xsl:element>
</xsl:template>


THIS DOES NOT WORK:===========

<xsl:template match="C1005" mode="hey">
  <xsl:element name="PHYSDESC">
    <xsl:attribute name="ENCODINGANALOG">
      <xsl:copy-of select="@LINK"/>
    </xsl:attribute>
    <xsl:copy-of select="@SC300"/>
  </xsl:element>
</xsl:template>

Maybe I need to use xsl:copy instead?

Mike F.

__________________________________________________
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free email!
http://mail.yahoo.com/

 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]