xsl-list
[Top] [All Lists]

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

2005-12-14 23:43:22
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 :-)

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