xsl-list
[Top] [All Lists]

RE: Help needed to make XSL for my XML

2004-11-07 19:27:52

Geert,

THANKS A MILLION!!!!  It solved my problem right on!

Yipeee!     :)


SY Lim.

-----Original Message-----
From: Geert Josten [mailto:Geert(_dot_)Josten(_at_)daidalos(_dot_)nl]
Sent: Saturday, November 06, 2004 7:24 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] Help needed to make XSL for my XML


Lim Siew Yin wrote:

 <xsl:apply-templates select="//tagXX[position() &gt;= $pStartRecord  and
position() &lt; ($pStartRecord + $pDataPageSize)]"/>

the position() is evaluated on basis of the current context list. For the
following expression:

     //tagXX[position() ...]

position() is evaluated on basis of the document position of the tagXX
within its parent. So this is
evaluated for each tagXX separately. This explains the results you get.

What you are looking for is the count within the list of _all_ tagXX. You
can do this by simply
wrapping //tagXX in braces:

     (//tagXX)[position() ...]

This forces //tagXX to be evaluated first, resulting the list of all tagXX
elements and setting that
as current context list for the predicate with the position()...

Grtz,
Geert

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


---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.786 / Virus Database: 532 - Release Date: 10/29/2004



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