|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: simple tree problem ...
> > First there was a tree ... > <snip> > <position> 1 > <position> 2 > <position/> 3 > </position> > <position/> 4 > </position> > <position/> 5 > </snip> > > (values only to explain sample) > > Now I want first the positions 1 and 5 , than 2 and 4 and > last but not least the 3rd one. (From parent to all childen > and their children ...) One way of doing a breadth-first tree walk is: <xsl:template match="position"> <xsl:apply-templates select="child::position" mode="visit"/> <xsl:apply-templates select="child::position"/> </xsl:template> <xsl:template match="position" mode="visit"> <xsl:value-of select="."/> </xsl:template> Mike Kay XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
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








