xsl-list
[Top] [All Lists]

Re: [xsl] Correcting a prior error

2010-07-31 02:55:39
On Sat, 31 Jul 2010 08:21:12 +0100
Andrew Welch <andrew(_dot_)j(_dot_)welch(_at_)gmail(_dot_)com> wrote:

<xsl:key name="p" match="*">
<xsl:number level="any" count="*" from="/"/>
</xsl:key>

This creates a key of elements-by-position, so given a number it will
return the element at that position.

That's what I was missing. Return an element, same as //*[position() =
$x] ?





<xsl:variable name="val" select="document($src)/key('p', $posn)"/>

This gets the value of the of the element at that position in
document($src)

Since the element is an xhtml a, and I want @href
select="document($src)/key('p', $posn)/@href"


Thanks Andrew. 

New use of keys to me. Thanks Mike.


regards 


-- 

regards 

-- 
Dave Pawson
XSLT XSL-FO FAQ.
http://www.dpawson.co.uk

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