Re: [xsl] XSLT error: The expression does not evaluate to a node-set

Subject: Re: [xsl] XSLT error: The expression does not evaluate to a node-set
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 22 Jul 2003 10:22:28 +0100
Your default definition of panels_a is
  <xsl:param name="panels_a" />

which makes a zero-length _string_ so as its a string you can't do

$panels_a[following-sibling::*]"/>

what you want for a default is an empty node set, not an empty string so

 <xsl:param name="panels_a" select="/.."/>


/.. doesn't select anything but does generate a node set.

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


Current Thread