xsl-list
[Top] [All Lists]

Re: Highlighting

2004-05-11 09:49:18
Thanks Kenny.

Generated output is PDF & HTML.

Cheers,

Mark

----- Original Message ----- 
From: "Kenny Akridge" <kenny(_at_)akridgefamily(_dot_)com>
To: <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
Sent: Tuesday, May 11, 2004 5:24 PM
Subject: RE: [xsl] Highlighting


If you mean in generated HTML, then you could just use CSS or JavaScript.

Like this:

<tr>
<xsl:attribute name="style">
<xsl:text>background-color: </xsl:text>
<xsl:choose>
<xsl:when test="$count mod 2 = 0">

<xsl:text>#FFFFFF;</xsl:text>
</xsl:when>
<xsl:otherwise>

<xsl:text>#E7EEFF;</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<td>blah</td>
</tr>

-----Original Message-----
From: Mark Williams [mailto:mark(_at_)skwirel(_dot_)com]
Sent: Tuesday, May 11, 2004 12:17 PM
To: XSL-List
Subject: [xsl] Highlighting

Hi,

Can anyone point me in the right direction as to how I would add
highlighting (ie a background colour) to parts of text in an xsl template.

TIA

Mark Williams


--+------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--+--



--+------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--+--





<Prev in Thread] Current Thread [Next in Thread>