Code: Select all
<xsl:element name="a">
<xsl:attribute name="style">
// What do to for color:blue;text-decoration:none
</xsl:attribute>
</xsl:element>Thanks
Moderator: General Moderators
Code: Select all
<xsl:element name="a">
<xsl:attribute name="style">
// What do to for color:blue;text-decoration:none
</xsl:attribute>
</xsl:element>Code: Select all
<a>
<xsl:attribute-set>
<xsl:attribute name="font-weight">bold</xsl-attribute>
<xsl:attribute name="style">color:blue;text-decoration:none</xsl:attribute>
</xsl:attribute-set>
</a>Code: Select all
<xsl:attribute name="href">
<xsl:value-of select="$ClickUrl" />
</xsl:attribute>Code: Select all
<xsl:attribute name="onclick">
// What to do to insert window.open('$ClickUrl')
</xsl:attribute>Code: Select all
<xsl:attribute name="bar">htmlentities("<foo/>")</xsl:attribute>
<xsl:attribute name="bar"><![CDATA[ <foo/> ]]></xsl:attribute>