xsl-list
[Top] [All Lists]

RE: Finding parent of the middle child

2005-06-20 15:28:56
Actually, it's version="1.0"

(//rec_gear_sec/*)[$gearMid] is returning the very first child, even
though $gearMid returns 34. I wasn't even sure if that syntax would be
allowed in 1.0.

Yes, it is allowed. But if $gearMid is a result tree fragment rather than a
number, then this expression doesn't do what you want. The RTF is converted
to a boolean and is always true. Use

<xsl:variable name="gearMid" select="...."/>

Michael Kay
http://www.saxonica.com/



--~------------------------------------------------------------------
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>
--~--