Subject: RE: How to disable output escaping inside attribute values
From: "Julian Reschke" <julian.reschke@xxxxxx>
Date: Wed, 10 Apr 2002 11:35:11 +0200
|
> From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]On Behalf Of Ivanco Maros
> Sent: Wednesday, April 10, 2002 11:26 AM
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: How to disable output escaping inside attribute values
>
>
> Hi,
> is there any possibility to disable output escaping inside
> attribute values?
You don't need to.
> I would love to output some hard spaces (and maybe some other
> escape characters) in dynamic output.
Just use " " instead of "&nbsp;" (which is wrong in the first
place).
> Fragment of my generated XML is:
> <Location>
> <Company_name>My&nbsp;&nbsp;Company</Company_name>
> </Location>
>
> Desired HTML output is:
> <INPUT type="text" value="My Company"/>
>
> I have already tried
> <INPUT type="text" value="{/Location/Company_name}"/>
> and
> <xsl:variable name="pom"><xsl:value-of
> disable-output-escaping = "yes"
> select="/Location/Company_name"/></xsl:variable> <INPUT
> type="text" value="{$pom}"/>
>
> but I always get:
> <INPUT type="text" value="My&nbsp;&nbsp;Company"/>
>
> I will appreciate any suggestion or workaround.
>
> Maros.
>
> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|