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)


Hi Walter,

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

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

i.e. for each bit of data (interaction), create a row.  Within the
row, for each column, create a cell.
 
Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/



 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]