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: Node Selection


Hi Jim,

> I am using Xalan for xsl transformations. I have some xml with
> multiple <Activity> nodes in it for each part that is processed. The
> activity nodes are not sorted in any way in the xml. I want to
> select only the latest activity (by Date, Time) to process in the
> transform for my output to show the last activity scan on this part
> and ignore all other activity scans.

The easiest way to do this is to sort the Activity elements by their
Date and Time (in descending order), and then choose the first one
only to go on and process:

<xsl:template match="Part">
   <xsl:for-each select="Activity">
      <xsl:sort select="Date" order="descending" />
      <xsl:sort select="Time" order="descending" />
      <xsl:if test="position() = 1">
         <xsl:apply-templates select="." />
      </xsl:if>
   </xsl:for-each>
</xsl:template>

I hope that helps,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/



 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]