|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Generating form fields with xsl
<xsl:choose><xsl:when test="display='textfield'"><input type="text"
name="{name}"/></xsl:when>
<xsl:when test="display='textarea'"><textarea name="{name}"
></textarea> </xsl:when>
you are missing a $ off name and if display is an attribute it will be
preceded by a $ or @ depending on the context i.e.
<xsl:choose>
<xsl:when test="@display='textfield'">
<input type="text"name="{$name}"/>
</xsl:when>
<xsl:otherwise>
otherwise do something
</xsl:otherwise>
</xsl:choose>
----- Original Message -----
From: "Pieter Reint Siegers Kort" <pieter.siegers@xxxxxxxxxxx>
To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Friday, March 26, 2004 3:48 PM
Subject: RE: Generating form fields with xsl
> Hi Kaerstin,
>
> Please post your XML or an extract of it so we can determine the cause of
> your problem better, just like you did with the radio and check boxes.
>
> <prs/>
>
> -----Original Message-----
> From: Johnson, Kaerstin [mailto:johns218@xxxxxxxxx]
> Sent: Friday, March 26, 2004 9:08 AM
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: Generating form fields with xsl
>
>
> I have an xml page that gets translated into a html form using my xsl
> stylesheet. However when I try and create a textarea field, it doesnt
work.
> How does one create a <textarea name=""></textarea> equivalent in xsl?
>
> I tried using an input with ttype textfield and also the way below: they
> dont seem to work.
>
>
> <xsl:choose><xsl:when test="display='textfield'"><input type="text"
> name="{name}"/></xsl:when>
> <xsl:when test="display='textarea'"><textarea name="{name}"
> ></textarea> </xsl:when>
>
> <xsl:otherwise>
>
> <xsl:apply-templates select="possibleValues">
> <xsl:with-param name="typo" select="display"/>
> <xsl:with-param name="multiple" select="$multiple"/>
> <xsl:with-param name="label" select="name"/>
> </xsl:apply-templates>
> </xsl:otherwise>
> </xsl:choose>
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








