|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: select in the <xsl:param /> tag
Hi Simon, > Am I right in saying that declaring the <xsl:param /> tag as follows > will make the named node set default to null if the template is > called without the <xsl:with-param /> tag. > > <xsl:param name="node-set" select=".." /> There's no such thing as "null" in XPath. The above <xsl:param> will make the $node-set parameter default to the parent of the context node at the point the template is called. Probably you meant: <xsl:param name="node-set" select="/.." /> which makes it default to an empty node set (since the root node, /, doesn't have a parent). > or is it > > <xsl:param name="node-set" select="" /> This is a syntax error: the select attribute contains an XPath expression and "" is not a legal XPath expression. Note that if you omit the select attribute (and don't have any content in <xsl:param>) then the default value for the parameter is an empty string. Cheers, Jeni --- Jeni Tennison http://www.jenitennison.com/ XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








