Re: [xsl] Correcting a prior error

Subject: Re: [xsl] Correcting a prior error
From: Dave Pawson <davep@xxxxxxxxxxxxx>
Date: Sat, 31 Jul 2010 08:55:27 +0100
On Sat, 31 Jul 2010 08:21:12 +0100
Andrew Welch <andrew.j.welch@xxxxxxxxx> 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

Current Thread