Re: [xsl] Processing rowsets of multiple queries

Subject: Re: [xsl] Processing rowsets of multiple queries
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 11 Nov 2005 21:34:56 GMT
<xsl:for-each select='$custdata'>  <-- expect to pass $custdata/row

If you want to itearate over the rows, you want $custdata/row, as you
suggest in the comment not $custdata as you have in the code.


  <xsl:call-template name='row1'>
    <xsl:with-param name='therow' select='.'/>x
  </xsl:call-template>			

There is never any need to pass . as a parameter, the named template
still has access to . In this case it would be more natural to replace
this the for-each and the call-template by a single apply-templates.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread