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: Template problem.Unnecessary text displayed


> 		<xsl:for-each select="Values">
> 			<td>Value of </td>
> 			<td><xsl:value-of select="Values"/></td>
> 		</xsl:for-each>

You are asking it to display the <Values> child of a <Values> element.
Change this to:

> 		<xsl:for-each select="Values">
> 			<td>Value of </td>
> 			<td><xsl:value-of select="."/></td>
> 		</xsl:for-each>

Mike Kay


 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]