[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Node test--> text -->different format

Subject: RE: Node test--> text -->different format
From: "Andreas L. Delmelle" <a_l.delmelle@xxxxxxxxxx>
Date: Thu, 13 Nov 2003 12:22:32 +0100
node test
> -----Original Message-----
> From: Barry van Weldam
>
> Now i just want to test if Row/Column_01 has a value of "Total"
> and if so i want to format the text bold.
>
> Tried the following:
>
>  <!--Here i use a tmpl for each cell -->
>  <xsl:template match="Row/*">
>  <xsl:when test='Row/Column_01[.!="Total"]'>

Ouch! You are testing on a Row child of the Row element here, forgetting the
enclosing xsl:choose and using square brackets where none are needed

Try your code below again but ...

>
>  <!--Here i use a tmpl for each cell -->
>  <xsl:template match="Row/Column_01[not(='Total']">
                                         ^^^
                                       put a . before =

>      <fo:table-cell border="solid black 1 px"
> border-collapse="collapse" padding-right="5px" padding-top="3px">
>          <fo:block>
>          <xsl:value-of select="node()[not(.='null')]"/>
>          </fo:block>
>      </fo:table-cell>
>  </xsl:template>
> <!-- if column-01 is Total diff format -->
>  <xsl:template match="Row/Column_01[.="Total"]">
                                       ^^^   ^^^
                                     use single quotes here


>      <fo:table-cell border="solid black 1 px"
> border-collapse="collapse" padding-right="5px" padding-top="3px">
>          <fo:block font-weight="bold">
>          <xsl:value-of select="node()[not(.='null')]"/>
>          </fo:block>
>      </fo:table-cell>
>  </xsl:template>
>

Cheerz,

Andreas


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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.