Re: [xsl] Insert <options> from XML

Subject: Re: [xsl] Insert <options> from XML
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 26 Nov 2003 10:36:16 GMT

> I want to create an <option> from a select reading quantity attribute like
> something like this but it doesn't work:

You need to post a small example of your required output, it's no help
to post some xslt that doesn't work as only you know what it was
intended to do.

You can't change the value of a variable once it is bound so within teh
scope of
        <xsl:variable name="num" select="1"/>
$num will always be one, and attenpts to redefine it will be an error,
but I can't guess what you intended.

If I did guess, I'd guess something like

                       <select class="combo" name="QRoom" id="QRoom">
		           <option value="0" selected="selected">0</option>
			  <xsl:for-each select="ROOM/@quantity">
                          <option value="position()"><xsl:value-of select="position()"/></option>
                          </xsl:for-each>
	               </select>


But I can't guess what you mean here:
>  Finally I want two selects whithin 5 and 2 <option>'s.

David

-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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


Current Thread