xsl-list
[Top] [All Lists]

Re: [xsl] Problem with index-position in for-each

2007-12-18 11:08:35
$staticParts/tree/statics[position()]
is short for
$staticParts/tree/statics[position()=position()]
which is the same as
$staticParts/tree/statics

So you want
<xsl:for-each select="1 to count($staticParts/tree/statics)">
<xsl:value-of
select="$staticParts/tree/statics[position()=current()]/@mapTo"/>

but it's not at all clear why you want to iterate over integers and tehn
repeatedly index into the list, why not just iterate over the list
directly?

<xsl:for-each select="$staticParts/tree/statics">
<xsl:value-of select="@mapTo"/>


David

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>