Re: Re: RE: [xsl] sequence numbering.

Subject: Re: Re: RE: [xsl] sequence numbering.
From: "Joerg Heinicke" <joerg.heinicke@xxxxxx>
Date: Tue, 2 Apr 2002 20:07:31 +0200
the error is here:
> <xsl:value-of select="key('color',this_color)"/>

<xsl:value-of select="key('color',$this_color)"/>

So you select such a color-element:

<color id = "11">
    <name>red</name>
</color>

>From here you can navigate for a "more correct" XPATH:

<xsl:value-of select="key('color',$this_color)/name"/>

So you won't have no whitespace problems.

Joerg


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


Current Thread