RE: [xsl] Accessing Variables while sorting

Subject: RE: [xsl] Accessing Variables while sorting
From: Jarno.Elovirta@xxxxxxxxx
Date: Tue, 8 Jan 2002 14:51:33 +0200
Hi

> In the code below, how do i assign the value of SortField to 
> $Variable ?
> <xsl:for-each select="PatientList/Patient">
> 	<xsl:sort select="$Variable" order="ascending"></xsl:sort>
> 	   <tr> 
> 	       <td width="17%" height="30"><xsl:value-of 
> select="LastName"/></td>

You don't--use

<xsl:for-each select="PatientList/Patient">
  <xsl:sort select="*[name() = ../../SortDetails/SortField]"
order="ascending"></xsl:sort>
    <tr> 
      <td width="17%" height="30"><xsl:value-of select="LastName"/></td>

or 

<xsl:variable name="Variable" select="PatientList/SortDetails/SortField"
/>
<xsl:for-each select="PatientList/Patient">
  <xsl:sort select="*[name() = $Variable]" order="ascending"></xsl:sort>
    <tr> 
      <td width="17%" height="30"><xsl:value-of select="LastName"/></td>

Santtu

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


Current Thread