Re: [xsl] dynamically sort except first row if display=0

Subject: Re: [xsl] dynamically sort except first row if display=0
From: aalbuquerque@xxxxxxxxxxxxxxxx
Date: Wed, 6 Nov 2002 13:09:27 +0000
"Braumüller, Hans" <H.Braumueller@xxxxxxxxxxxx> wrote:

> Hello friends,
> 
Hello Hans.

(...)
> XSL:
> ...
> <xsl:apply-templates select="row">
(...)

instead of this use:
<xsl:apply-templates select="row[not(display=0)]">
 ...
This way you're applying the templates to all rows except those that have a
display=0

-- 
+-------------------------------------+
| This email was sent using V-Webmail |
|     http://www.v-webmail.co.uk/     |
+-------------------------------------+


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread