This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Get a Count Parents - Please! 2



Hi all,

How I get a count of parent's elements?
This is my xml:

<XML>
   <PRODUCAO>
        <TRABALHOS>
              <TRABALHO>1</TRABALHO>
              <TRABALHO>2</TRABALHO>
              <TRABALHO>3</TRABALHO>
        </TRABALHOS>
        <ARTIGOS>
            <ARTIGO>1</ARTIGO>
            <ARTIGO>2</ARTIGO>
            <ARTIGO>3</ARTIGO>
        </ARTIGOS>
   </PRODUCAO>
</XML>

I want to get a count of my previous elements.
Example:

<xsl:template match="ARTIGO">
      <xsl:variable name="var_pos" select="position()"/>
      <xsl:variable name="var_countprevious" value-of select="count of
'TRABALHO' elements"/>
      Artigo:
      <xsl:value-of select="$var_pos"/>
      Count: <xsl:value-of select="$var_pos + $var_countprevious"/>
</xsl:template>

Output:
-----------
Artigo: 1 - Count: 4
Artigo: 2 - Count: 5
Artigo: 3 - Count: 6


I think that could be some that:
<xsl:value-of select="parent::*/parent::*/preceding-sibling::*"/>
If someone can make this, I thanks.


Cheers,


Paulo.


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]