[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Grouping the information - XSLT

Subject: Grouping the information - XSLT
From: "Kumar V." <vkumar@xxxxxxxxxxxxx>
Date: Tue, 09 Oct 2001 17:42:41 +0530
xslt justify
Hi Friends,

      I have some problem in the grouping the parallel information in the XSLT. I hope, you people will provide me a solution. <term> and <def> are defined as parallel elements. <def> element can occur without <term>.

Xml Coding:
<term>A</term><def>A stands for ...</def>
<term>B</term><def>B stands for ...</def>
<def>C stands for ....</def>
<def>D stands for ....</def>
<term>E</term><def>E stands for ...</def>

Output Should be:
<p align="justify">A    A stands for ...</p>
<p align="justify">B    B stands for ...</p>
<p align="justify">C stands for ....</p>
<p align="justify">D stands for ....</p>
<p align="justify">E    E stands for ...</p>

I am using the below template to display the above output. But it is not coming perfectly.

<xsl:template match="def">
<p align="justify">
<xsl:if test="preceding::term[1]">
<xsl:value-of select="preceding::term[1]"/>
</xsl:if>
<xsl:if test="not(preceding::term)">
</xsl:if>
<xsl:apply-templates/></p>
</xsl:template>

Output using the above template

<p align="justify">A    A stands for ...</p>
<p align="justify">B    B stands for ...</p>
<p align="justify">B    C stands for ....</p>
<p align="justify">B    D stands for ....</p>
<p align="justify">E    E stands for ...</p>

Thanks in Advance.

Regards,
Kumar V.


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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.