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

Re: how to populate drop down list

Subject: Re: how to populate drop down list
From: "Thomas B. Passin" <tpassin@xxxxxxxxxxxx>
Date: Fri, 22 Mar 2002 15:34:59 -0500
populate drop down list
[Uslu, Cihan Y (MED)]

> I want that list 5 times(there are 5 answers in XML snippet) to repeat,
> so that I can choose the correct match attribute from drop down list for
> each answer. That's why I was trying to use <xsl:for-each> to wrap the
> <select> element. With the current code I get it only once.
>
> This is how I want:
>
> ----------------------------------------------------------------
> Drop-Down List( has all the match attributes in it) A. This is
> Answer 1
> Drop-Down List( has all the match attributes in it) B. This is
> Answer 2
> Drop-Down List( has all the match attributes in it) C. This is
> Answer 3
> Drop-Down List( has all the match attributes in it) D. This is
> Answer 4
> Drop-Down List( has all the match attributes in it) E. This is
> Answer 5
> ---------------------------------------------------------------

I think you could stand some redesign in the structure of your xml source.
However here's how you can do it with your current source(you still need to
come up with some way name the select elements so you know which one applies
to which question):

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method='html' encoding='iso-8859-1'/>

<xsl:template match="/">
   <!-- Process each question -->
    <xsl:apply-templates select='question'/>
</xsl:template>

<!-- Handle each question -->
<xsl:template match='question'>

    <!--Create the list of options to be used for each answer -->
    <xsl:variable name='answers'>
    <xsl:for-each select='answer/@match'>
        <option value='{.}'><xsl:value-of select='.'/></option>
    </xsl:for-each>
 </xsl:variable>

    <!-- Create the select element for each answer -->
    <xsl:for-each select='answer'>
        <xsl:value-of select='para'/><br/>
        <select><xsl:copy-of select='$answers'/></select><br/><br/>
    </xsl:for-each>

</xsl:template>
</xsl:stylesheet>

Tom P


 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.