|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Find out current node and display next one
Tempore 14:36:44, die 09/10/2005 AD, hinc in xsl-list@xxxxxxxxxxxxxxxxxxxxxx scripsit Ragnar Heil <r@xxxxxxx>:
using the following xml I want to find out with XSLT which node is the next to the current node. "Next" is defined as a number-prefix of the node-title" Try this little XSLT: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:tcm="http://www.CMS.com/ContentManager/5.0"> <xsl:output method="xml" indent="yes"/> <xsl:key name="nextItem" match="tcm:Item" use="../tcm:Item[number(substring-before(current()/@Title,' '))= number(substring-before(@Title,' '))+1]/@ID"/> <xsl:template match="tcm:Item">
Current node ID: <xsl:value-of select="@ID"/>
Next node ID: <xsl:value-of select="key('nextItem',@ID)/@ID"/>
</xsl:template></xsl:stylesheet>
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








