xsl-list
[Top] [All Lists]

RE: Insert <options> from XML

2003-11-26 04:18:57
David I want

-----Mensaje original-----
De: owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
[mailto:owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com]En nombre de 
David
Carlisle
Enviado el: miércoles, 26 de noviembre de 2003 11:36
Para: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Asunto: Re: [xsl] Insert <options> from XML

Sorry David, the output I want if I have this xml

 <ROOM quantity="5">
   ...
 <ROOM>
 <ROOM quantity="2">
   ...
 <ROOM>

is to have two combo boxes with 5 and 2 <options> respectively. Exactly
this:

 <select class="combo" name="QRoom" id="QRoom">
   <option value="1">1
   <option value="2">2
   <option value="3">3
   <option value="4">4
   <option value="5">5
 </select>
and the other,
   <select class="combo" name="QRoom" id="QRoom">
   <option value="1">1
   <option value="2">2
 </select>

Thanks in advance
Frank


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




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



<Prev in Thread] Current Thread [Next in Thread>