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

Re: How can I sort this?

Subject: Re: How can I sort this?
From: Mukul Gandhi <mukul_gandhi@xxxxxxxxx>
Date: Tue, 24 May 2005 01:24:44 -0700 (PDT)
select option sort
Please try this XSL ..
(there seems to be well formdness error in the XML you
posted)

<?xml version="1.0"?> 
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
 
<xsl:output method="xml" encoding="UTF-8" indent="yes"
/> 

<xsl:template match="/BigList">
   <select id="SmallElements">
    <xsl:for-each select=".//Name">
      <xsl:sort select="." />
      <option
value="{preceding-sibling::Code[1]}"><xsl:value-of
select="." /></option>         
    </xsl:for-each>
   </select> 
</xsl:template>

</xsl:stylesheet>

Regards,
Mukul

--- knocte <knocte@xxxxxxxxx> wrote:
> Hello list!
> 
> I have a problem of sorting when forming a SELECT
> INPUT BOX.
> 
> 
> The XML:
> 
> <BigList>
>   <BigElement>
>     <Code>XXP</Code>
>     <SmallList>
>       <SmallElement>
>         <Code>001</Code1>
>         <Name>A</Name>
>       </SmallElement>
>       <SmallElement>
>         <Code>002</Code1>
>         <Name>X</Name>
>       </SmallElement>
>     </SmallList>
>   </BigElement>
>   <BigElement>
>     <Code>YYJ</Code>
>     <SmallList>
>       <SmallElement>
>         <Code>01</Code1>
>         <Name>B</Name>
>       </SmallElement>
>       <SmallElement>
>         <Code>02</Code1>
>         <Name>Z</Name>
>       </SmallElement>
>     </SmallList>
>   </Element>
> </BigList>
> 
> 
> The XSLT:
> 
> <select id="SmallElements">
>   <xsl:for-each select="BigList/BigElement">
>     <xsl:for-each select="SmallList/SmallElement">
>       <option value="Code">
>         <xsl:value-of select="Name" />
>       </option>
>     </xsl:for-each>
>   </xsl:for-each>
> </select>
> 
> Results:
> 
> <select id="SmallElements">
>   <option value="001">A</option>
>   <option value="002">X</option>
>   <option value="01">B</option>
>   <option value="02">Z</option>
> </select>
> 
> 
> How can I sort by the name? I mean, my expected
> results are:
> 
> <select id="SmallElements">
>   <option value="001">A</option>
>   <option value="01">B</option>
>   <option value="002">X</option>
>   <option value="02">Z</option>
> </select>
> 
> 
> Thanks in advance!
> 
>   Andrew
> 
> 

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

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.