|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Displaying Element Values - basic ?
patterj@xxxxxxxxxxxx wrote:
Forgive me if this posted already. You have some problems here. Firstly your attributes in the XML are lower case, the attributes are referred to in camel case in the XSLT and have different names; duedate versus DateDue and assigned versus DateAssigned. Then there is the <xsl:value-of select="Assignment"> line. Here's what it should probably look like (I have taken the XML attribute names as being correct). <xsl:for-each select="Assignments/Assignment">
<tr>
<td><xsl:value-of select="@duedate"/></td>
<td><xsl:value-of select="@assigned"/></td>
<td><xsl:value-of select="."/></td>
</tr>
</xsl:for-each>
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






