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]

Accessing Variables while sorting


Hi,

I have an XML that reads as 
<PatientList>
	<SortDetails>
		<SortField>FirstName</SortField>
	</SortDetails>
	<Patient>
		<LastName>AAndrew</LastName>
		<FirstName>ZBenjamin</FirstName>
		<Gender>M</Gender>
		<Age>56</Age>
		<DOB>04-20-1945 </DOB>
		<PatientID>234-562-7890</PatientID>
	</Patient>
</PatientList>

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>
		-----

Thanks in advance,
Seema.

 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]