RE: [xsl] dynamic sorting

Subject: RE: [xsl] dynamic sorting
From: "G. Ken Holman" <gkholman@xxxxxxxxxxxxxxxxxxxx>
Date: Thu, 05 Feb 2004 11:13:12 -0500
At 2004-02-05 16:49 +0100, Peter Billen wrote:
I meant the following code:

<xsl:template match="/">
        <xsl:apply-templates select="person">
                <xsl:sort select="fname"/>
        </xsl:apply-templates>
</xsl:template>

and

<xsl:template match="/">
        <xsl:param name="sort">fname</xsl:param>
        <xsl:apply-templates select="person">
                <xsl:sort select="$sort"/>
        </xsl:apply-templates>
</xsl:template>

As David said, this is a FAQ:


<xsl:sort select="*[name(.)=$sort]"/>

... but this isn't namespace-safe.

I hope this helps.

..................... Ken


-- Public courses: sign up for one or both soon to reserve your seat! Each week: Monday-Wednesday: XSLT/XPath; Thursday-Friday: XSL-FO Washington, DC: 2004-03-15 San Francisco, CA: 2004-03-22 Hong Kong, China: 2004-05-17 Bremen, Germany: 2004-05-24 World-wide on-site corporate, government & user group XML training

G. Ken Holman                 mailto:gkholman@xxxxxxxxxxxxxxxxxxxx
Crane Softwrights Ltd.          http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0    +1(613)489-0999 (F:-0995)
Male Breast Cancer Awareness  http://www.CraneSoftwrights.com/s/bc


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



Current Thread