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]

Re: Selecting distinct values based on an attribute




<xsl:for-each select="facilities[not(@facilitytype =
preceding::facilities/@facilitytype)]">
    <xsl:sort select="@facilitytype" order="ascending" />
    <xsl:value-of select="@facilitytype"/>
</xsl:for-each>

Perry

----- Original Message -----
From: Adam Darwin
To: XSL-List@lists.mulberrytech.com
Sent: Tuesday, September 25, 2001 5:27 PM
Subject: [xsl] Selecting distinct values based on an attribute


I have the following xml

<facilities facilitytype="pub" .... />
<facilities facilitytype="pool" .... />
<facilities facilitytype="bar" .... />

How can i Select all the facilitytype and order them
so that regardless of what order I get them in it will
always look the same (order is arbitrary)

all help is much appreciated.

regards,
Adam

____________________________________________________________
Do You Yahoo!?
Get your free @yahoo.co.uk address at http://mail.yahoo.co.uk
or your free @yahoo.ie address at http://mail.yahoo.ie

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


 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]