Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 3rd, 2008, 11:35 PM
Authorized User
 
Join Date: Jan 2007
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Default Accessing previous item in current-group() in loop

Is there a way to check the previous item in current group?

i.e.

<xsl:for-each select="current-group()">
  <xsl:if test="position() != 1">

  </xsl:if>

</xsl:for-each>

Like are there any functions that can help me achieve the item in the comment?

Cheers,
Mikey
 
Old January 4th, 2008, 06:47 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

The question applies to iteration over any sequence, except for the special case where the items in the sequence are siblings, in which case you can use preceding-sibling and following-sibling.

In general, use

<xsl:variable name="sequence" select="current-group()">
<xsl:for-each select="1 to count($sequence)">
  <xsl:variable name="position" select="."/>
  <xsl:variable name="currentItem" select="$sequence[$position]"/>
  <xsl:variable name="previousItem" select="$sequence[$position - 1]"/>

Just remember that inside the for-each, the context item (.) is a number, not a node.

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference





Similar Threads
Thread Thread Starter Forum Replies Last Post
Compare current value with previous parent node ratjetoes XSLT 2 July 17th, 2008 06:15 AM
Restart new group number in Group Footer sukarso Crystal Reports 2 October 13th, 2006 12:11 PM
Accessing different projects in the same group osemollie Beginning VB 6 1 May 24th, 2006 03:58 PM
how to check the current value and the previous va tllcll BOOK: Professional JavaScript for Web Developers ISBN: 978-0-7645-7908-0 1 October 24th, 2005 02:25 PM
Find Out First Item of each item Group Jane SQL Language 1 November 22nd, 2003 12:42 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.