RE: [xsl] xpath problem

Subject: RE: [xsl] xpath problem
From: TSchutzerWeissmann@xxxxxxxxxxxxxxxx
Date: Thu, 2 May 2002 16:31:14 +0100
Hi Kit,

don't know about Xalan parameters, sorry. In the first case what's happening
is that the * in 
	parent[child=*] 
actually means ./*  - ie any child node, so of course it works. 
But if you rewrite  
	parent[child/grandchild=*] 
as  
	parent[child/grandchild=./*] then you can see pretty quick why it's
not working. 

Regards,
Tom Weissmann

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread