Subject: Re: xls:for-each not working
From: Daniel McOrmond <dmcormond@xxxxxxxxx>
Date: Fri, 1 Apr 2005 14:54:03 -0500
|
Hi Josh,
Try:
<xsl:value-of select="transaction_detail"/>
Not:
<xsl:value-of select="/transaction_detail"/>
With the preceding slash, it's looking for a transaction_detail
element at the root level, which doesn't exist.
HTH,
-Daniel
On Apr 1, 2005 2:47 PM, josh higgins <doopsterus@xxxxxxxxx> wrote:
> I cannot get my for-each statement to work. Am I
> doing this incorrectly? I am just wanting to output
> all of the data in the xml file that has a
> <transaction_data> tag. Here is my statement and
> below is the sample xml. I use this to attempt to
> display my template <xsl:call-template name="detail"/>
> Please help!
|