xsl-list
[Top] [All Lists]

Re: Processing rowsets of multiple queries

2005-11-11 14:34:56

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

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>