Altova Mailing List Archives
>xsl-list Archive Home
>Recent entries
>Thread Prev -
>Thread Next - RE: [xsl] Problem for : increment a variable in a for-each?
RE: [xsl] Problem for : increment a variable in a for-each?
To:
Date: 11/26/2004 8:30:00 AM
> I found several people asked the same question with me > "Re: [xsl] how to increment a variable in a for-each > loop" but it really didn't resolve my problems. So > just wonder could I get help ? I spent lots of time on > it and can't get solution! > > My xml file > <root> > <list> > <ID>21</ID> > <Title>text1</Title> > <ParentID>1<ParentID> > </list> > <list> > <ID>22</ID> > <Title>text2</Title> > <ParentID>21<ParentID> > </list> > > <list> > <ID>23</ID> > <Title>text3</Title> > <ParentID>21<ParentID> > </list> > > <list> > <ID>24</ID> > <Title>text4</Title> > <ParentID>21<ParentID> > </list> > > <list> > <ID>25</ID> > <Title>text5</Title> > <ParentID>1<ParentID> > </list> > > </root> > > What I want do: I need do different thing for the > node which parentID is 21(by passing in )(exampel:If > it is first child then I need bold. if not first and > not last one then I need do second thing. If the node > is last child then I need do third things. > > I try to use the call:template and xsl:for each to > pass the parameter but the count is always set to > initial since I run so many for each > what I shoud do ? Try the following stylesheet, hopefully it's clear enough. A good rule of thumb - always use templates! If you are new to the language, using xsl:for-each will tempt you into the wrong way of thinking, whereas using templates forces you to understand whats going on in the background (although it seems completely wrong to start with :) <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:param name="ID" select="'21'"/> <xsl:template match="/"> <xsl:apply-templates/> </xsl:template> <xsl:template match="list"> <xsl:choose> <xsl:when test="ID = $ID and not(preceding-sibling::list)"> <!-- I'm equal to 21 and at the start of the list --> </xsl:when> <xsl:when test="ID = $ID and not(following-sibling::list)"> <!-- I'm equal to 21 and at the end of the list --> </xsl:when> <xsl:when test="ID = $ID"> <!-- I'm equal to 21 and in the middle of the list --> </xsl:when> <xsl:otherwise> <!-- I'm not equal to 21! --> </xsl:otherwise> </xsl:choose> </xsl:template> </xsl:stylesheet> cheers andrew
Disclaimer
These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

