xsl-list
[Top] [All Lists]

Re: Processing an element only if there are no better options

2003-05-22 01:45:13

  i.e. If there is a Type1 product, then don't output Type2 or Type3.
   However, if there is no Type1, then output Type2, but not Type3 if it's
  present.


<xsl:copy-of
select="ProductGroup[Product/@Type='Type1']/Product[(_at_)Type='Type1'] |
        
ProductGroup[not(Product/@Type='Type1')][Product/@Type='Type2']/Product[(_at_)Type='Type2']
 |
        
ProductGroup[not(Product/@Type='Type1')][not(Product/@Type='Type2')]/Product[(_at_)Type='Type3']
"/>

David

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