[
Lists Home |
Date Index |
Thread Index
]
- From: "G. Ken Holman" <gkholman@CraneSoftwrights.com>
- To: <xml-dev@xml.org>
- Date: Wed, 26 Apr 2000 19:53:36 -0400
At 00/04/26 19:49 +0300, Marin Dimitrov wrote:
>can I use <xsl:sort> to sort elements by attribute value?
Yes, the XPath expression in select= is relative to the node being sorted.
If you had data along the lines of:
<emp empnbr="234">.....
<emp empnbr="123">....
... and if you were using iteration, you would use something along the
lines of:
<xsl:for-each select="emp">
<xsl:sort select="@empnbr"/>
....
</xsl:for-each>
XSL, XSLT and XPath questions would be better posted to the following list:
http://www.mulberrytech.com/xsl/xsl-list
There are a number of subscribers who would enthusiastically respond to
such questions.
I hope this helps.
.............. Ken
--
G. Ken Holman mailto:gkholman@CraneSoftwrights.com
Crane Softwrights Ltd. http://www.CraneSoftwrights.com/x/
Box 266, Kars, Ontario CANADA K0A-2E0 +1(613)489-0999 (Fax:-0995)
Web site: XSL/XML/DSSSL/SGML services, training, libraries, products.
Practical Transformation Using XSLT and XPath ISBN 1-894049-04-7
Next instructor-led training: 2000-05-02,2000-05-11/12,2000-05-15,
- 2000-06-12,2000-06-13,2001-01-27
***************************************************************************
This is xml-dev, the mailing list for XML developers.
To unsubscribe, mailto:majordomo@xml.org&BODY=unsubscribe%20xml-dev
List archives are available at http://xml.org/archives/xml-dev/
***************************************************************************
|