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]
Other format: [Raw text]

RE: Accessing Variables while sorting


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]