xsl-list
[Top] [All Lists]

Re: Consolidating xpath expressions....

2003-12-01 04:22:42
  Can someone give me some advice as to how I can change these three lines of 
  code into a single line??

  <xsl:for-each select="//client[not($clientid) or @ID=$clientid]">
  <xsl:for-each select="descendant-or-self::client">
  <xsl:for-each select="usage[(_at_)TOTALSENT > 0]">

just replace xsl:for-each by /


<xsl:for-each select="//client[not($clientid) or 
@ID=$clientid]/descendant-or-self::client/usage[(_at_)TOTALSENT > 0]">

David

-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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



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