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

RE: if-questioning between two nodes inside an for-each-loop

Subject: RE: if-questioning between two nodes inside an for-each-loop
From: Don Bruey <dbruey@xxxxxxxxxxxxxxxxxxxxx>
Date: Fri, 15 Sep 2000 09:52:42 -0400
xsl for each two
Following XSL works for me in Saxon:
Note two things: 

<xsl:if test=". = $CHOOSE"> not ".=CHOOSE" - you want to reference the
variable you created above. 

Also the <xsl:attribute line is AFTER the value of the element has been
output, which doesn't work.  Move it before the value of the element.  As
you're transforming HTML from XML tag, text, /tag, etc. the XSL processor
can't reasonably expected (I don't think) to be able to go backwards and add
the attribute value to the opening tag. 


<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
  <xsl:param name="lang" select="en"/>
  <xsl:template match="/">

    <html>
      <head>
      </head>
      <body>
	<h1>The choosed car is:</h1>
	<select name="CARS">

            <xsl:variable name="CHOOSE">
		<xsl:value-of select="cars/choose"/>
	</xsl:variable>

	  <xsl:for-each select="cars/single">
	  	<option>
		    <xsl:if test=". = $CHOOSE">
			    <xsl:attribute name="selected">
			    </xsl:attribute>
		    </xsl:if>
	    	<xsl:attribute name="value">
	     	 <xsl:value-of select="."/>
	   	 </xsl:attribute>

	   	 <xsl:value-of select="."/>
		  
	 	 </option>

	</xsl:for-each>
          </select>
       </body>
     </html>
  </xsl:template>
</xsl:transform>


Hi all,

i have the following problem:
xml-part:

<cars>
<single>BMW</single>
<single>VW</single>
<single>MERCEDES</single>
<single>AUDI</single>


<choose>VW</choose>
</cars>

xsl-part:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
  <xsl:param name="lang" select="en"/>
  <xsl:template match="/">

    <html>
      <head>
      </head>
      <body>
	<h1>The choosed car is:</h1>
	<select name="CARS">

            <xsl:variable name="CHOOSE">
		<xsl:value-of select="cars/choose"/>
	</xsl:variable>

	  <xsl:for-each select="cars/single">
	  	<option>
	    	<xsl:attribute name="value">
	     	 <xsl:value-of select="."/>
	   	 </xsl:attribute>
	   	 <xsl:value-of select="."/>
		  
		  <xsl:if test=". = CHOOSE">
			<xsl:attribute name="selected">
			</xsl:attribute>
		  </xsl:if>
	 	 </option>

	</xsl:for-each>
          </select>
       </body>
     </html>
  </xsl:template>
</xsl:transform>


Armin


      


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


 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.