Re: [xsl] Determine last element before applu-templates

Subject: Re: [xsl] Determine last element before applu-templates
From: gerritjan <gerritjankoekkoek@xxxxxxx>
Date: Sun, 23 Jan 2005 12:05:48 +0100
Thx,

Should I use a sort in 'apply-templates' to be sure that the last element is THE last element?
I've an attribute in 'document' called 'bloknummer'. The problem with sort is that I get a alpha numeric sort; 1,10,11,2,34


Gerritjan Koekkoek
Op 23-jan-05 om 11:50 heeft Joris Gillis het volgende geschreven:

Tempore 11:41:08, die 01/23/2005 AD, hinc in xsl-list@xxxxxxxxxxxxxxxxxxxxxx scripsit gerritjan <gerritjankoekkoek@xxxxxxx>:

    <xsl:if test="position()=$last_element">
      <xsl:text>Something specific for last element</xsl:text>
    </xsl:if>
Hi,

Maybe you can use:
<xsl:if test="position()=last()">
	<xsl:text>Something specific for last element</xsl:text>
</xsl:if>

regards,
--
Joris Gillis (http://www.ticalc.org/cgi-bin/acct-view.cgi?userid=38041)
Deserta faciunt et innovationem appelant

Current Thread