Re: Escaping within an xsl:attribute element

Subject: Re: Escaping within an xsl:attribute element
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 9 Dec 1999 16:37:53 GMT


>  so I have to use an xsl:value-of to pull it

the semantics of { } are exactly the same as semantics of 
 <xsl:value-of select= 
 so

     <xsl:element name="tr">
      <xsl:attribute name="bgcolor">
       <xsl:value-of
select="/Portal:Page/Portal:Preferences/Portal:trimColor"/>
      </xsl:attribute>
...
  </xsl:element>

is equivalent to

<tr bgcolor="{/Portal:Page/Portal:Preferences/Portal:trimColor}">
...
</tr>

but takes more typing.

David


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


Current Thread