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

Re: How to code with relative context: "if the next no

Subject: Re: How to code with relative context: "if the next node <ns3:ddd></ns3:ddd> is not empty then ....."
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Thu, 05 Nov 2009 19:01:17 +0100
Re:  How to code with relative context: "if the next no
Ben Stover wrote:
I would like to copy something to the target XML doc context (!) depending from the value of a node on the same level.

It should all look similar to the following pseudo code:

...assume we are on level/inside <aaa><bbb><ccc>
<xs:if <ddd>...</ddd> contains a non-whitespace value then>
  <mytext>yes value found<mytext>
<xs:else>
  <myothertext>no value found</myothertext>
</xs:if>
...
</ccc>...</bbb>....</aaa>

How can I code this with XSLT ?

Again: If possible the condition should be context dependent. I don't want to code
the full XPath  /aaa/bbb/ccc/ddd in the "if" clause.
Instead the XPath expression should be relative to the current position

Well if you have <xsl:template match="ccc"> or maybe <xsl:template match="aaa/bbb/ccc"> then in that template you can certainly use <xsl:choose> <xsl:when test="ddd[normalizes-space()]"> <mytext>yes value found<mytext> </xsl:when> <xsl:otherwise> <myothertext>no value found</myothertext> </xsl:otherwise> </xsl:choose>

--

	Martin Honnen
	http://msmvps.com/blogs/martin_honnen/

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.