|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: format negative numbers
On 28/04/2008, Markus Gamperl <markus.gamperl@xxxxxx> wrote:
> Hi.
>
> I have a html report with lots of number columns. I want to highlight negative numbers in red color.
>
> I know I could add an if element in every column and check for negative numbers. If negative I could add a style attribut to the table cell. Another way could be calling a template with parameter which does the formatting task.
>
> But is there a more simple way to do this? Im also working with the format-number function but I didn't find a feature to implement my needs...
>
> What do you mean?
>
Using a particular class seems fine, eg in 2.0:
class="{if (. lt 0) then 'neg ' else ''}"
or in 1.0 it would be:
<xsl:attribute name="class">
<xsl:if test=". < 0">neg </xsl:if>
</xsl:attribute>
(possibly moving the if test outside the attribute if that's the only
class used)
--
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






