Re: option list using XSL

Subject: Re: option list using XSL
From: Steve Tinney <stinney@xxxxxxxxxxxxx>
Date: Thu, 20 Jan 2000 09:07:14 -0500
<xsl:template match="animal/@name">
  <select value="{.}"><xsl:value-of select="."/></select>
</xsl:template>

 Steve

Marco.Mistroni@xxxxxxxxx wrote:
> 
> hi all,
>         i have a problem.
> i am using Xalan as XSL processor
> 
> i have an xml file like this
> 
> <animal name="lion"/>
> <animal name="panda"/>
> <animal name="dog"/>
> <animal name="cat" />
> 
> from this, i should generate an option list
> ideally the result should be like this:
> <select name="zoo">
>    <option value="lion">lion</option>
>    <option value="panda">panda</option>
>    <option value="dog">dog</option>
>    <option value="cat">cat</option>
> </select>
>


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


Current Thread