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]

Splitting and Sorting




Hi,

I have the following Problem: I want to split some sections in two HTML ULs.
I found some solutions in the XSLT FAQ, but I want to sort the sections 
also and the
xsl:sort only applies to apply and for-each.

Any solutions ?

<SECTIONS>
         <SECTION>a</SECTION>
         <SECTION>f</SECTION>
         <SECTION>b</SECTION>
         <SECTION>c</SECTION>
     <SECTION>z</SECTION>
</SECTIONS>

becomes

<UL>
<LI>a</LI>
<LI>b</LI>
<LI>c</LI>
</UL>

<UL>
<LI>f</LI>
<LI>z</LI>
</UL>

Thanks,
-stephan


 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]