Re: [xsl] Problem using xsl:if to skip a node in a repeating area

Subject: Re: [xsl] Problem using xsl:if to skip a node in a repeating area
From: Ragulf Pickaxe <ragulf.pickaxe@xxxxxxxxx>
Date: Thu, 15 Dec 2005 07:43:22 +0100
Hi Sean,

> <xsl:variable name='checkti' select='{title}' />

The variable should not have curly brackets in its select.
<xsl:variable name='checkti' select='title' />

This one will select an element with the name title.

Your <a href does need the curly brackets, so that should not be changed.

Cheers,
Ragulf Pickaxe :-)

Current Thread