xsl-list
[Top] [All Lists]

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

2003-07-22 02:22:28

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



<Prev in Thread] Current Thread [Next in Thread>