|
Subject: RE: option list using XSL From: Kay Michael <Michael.Kay@xxxxxxx> Date: Fri, 21 Jan 2000 10:07:06 -0000 |
> i have an xml file like this
>
> <animal name="lion"/>
>
> from this, i should generate
> <option value="lion">lion</option>
>
> <xsl:template match="animal/@name">
> <option>
> <xsl:attribute name="value"/><xsl:value-of select=".">
> <xsl:value-of select="."/>
> </option>
>
You want
<xsl:template match="animal">
<option value="{@name}"><xsl:value-of select="@name"/></option>
</xsl:template>
Mike Kay
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| RE: option list using XSL, Harbarth, Juliane | Thread | RE: option list using XSL, Marco . Mistroni |
| RE: How to do numeric validations i, Kay Michael | Date | RE: XSLT processors performance/com, Kay Michael |
| Month |