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]

Re: Re: retrieve data from #1 xml via data from #2 xml (again)


----- Original Message -----
From: "Jeni Tennison" <mail@jenitennison.com>
To: "Walter Torres" <walter@torres.ws>
Cc: <xsl-list@lists.mulberrytech.com>
Sent: Thursday, April 05, 2001 3:46 AM
Subject: Re: [xsl] Re: retrieve data from #1 xml via data from #2 xml
(again)


> Hi Walter,

Hi Jeni,


> Doh.  The <xsl:for-each for the data should be *outside* the
> row-creation:

Ahhh! [light bulbs going off!]


>  <xsl:for-each select="$data">
>     <tr>
>        <xsl:variable name="datum" select="events/call_event" />
>        <xsl:for-each select="$columns">
>           <xsl:variable name="column" select="." />
>           <td>
>              <xsl:value-of select="$datum/*[name() = $column]" />
>           </td>
>        </xsl:for-each>
>     </tr>
>  </xsl:for-each>

OK!

This is a step closer!

This now displays the proper 5 fields in the given order.

I change the order in the 'tableData.xml' file and the display change!

Sweet! <as my 9 year olds say>

But... <you knew this was comng didn't you?>

But, this should only give me 3 rows of data, since that is all I am giving
it.

Instead, I get my 3 rows of data, 3 times.

I justed added a forth row, now I get 4 copies of the 4 rows.

Like I said, one step closer.

I'm not seeing how this outside '<xsl:for-each>' should be doing this.

????????????

Walter


 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]