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

Re: dynamic sorting

Subject: Re: dynamic sorting
From: Jörg Heinicke <joerg.heinicke@xxxxxx>
Date: Sun, 4 Nov 2001 22:55:02 +0100
xsl dynamic sort column
Hi Danny,

some ways are possible. For example the following:

XML

<table>
    <row>
        <name>test</name>
        <age>20</age>
        <city>london</city>
        <country>great britain</country>
    </row>
    <row>
        ...
    </row>
    ...
</table>

XSL

<xsl:stylesheet .....>

<!-- name is standard, pass another value to the stylesheet -->
<xsl:param name="sort">name</xsl:param>

<xsl:template match="table">
    <xsl:apply-templates select="row">
        <xsl:sort select="*[name() = $sort]"/>
    </xsl:apply-templates>
</xsl:template>

<xsl:template match="row">
    <xsl:value-of select="name"/>
    <xsl:value-of select="age"/>
    <xsl:value-of select="city"/>
    <xsl:value-of select="country"/>
</xsl:template>

</xsl:stylesheet>

For this way you need a parameter, that you pass to the stylesheet. I don't
know, in which way you start your transformation. But I know, with Cocoon 2
this version can be easily realized. What's not possible, is <xsl:sort
select="$sort"/>. Only the workaround is working.

Hope this helps,

Joerg


> Hi all,
>
> I have been searching the archives for an answer to my question, and I'm
> very surprised I didn't find anything.
>
> The problem I have relates to sorting columns in a table diplayed in the
> browser.  Lets say my table has the folowing columns: Name, Age, City,
> Country, etc...  I want the user to be able to click on any column name
and
> re-sort the results by his/her criteria.  I have been trying to figure out
> how to do this, but it seems to me that the XSL template would have to be
> created dynamically.  Can I do this kind of sorting strictly in XSL, or do
I
> have to use some kind of scripting language (JavaScript, VB Script)?
>
> Thanks in advance,
>
> Danny


 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.