Re: Element with mixed=true, and xsl,xpath

> I want to traverse the whole element and pick up the subelements.

That's the default bhaviour of xslt.

eg <xsl:apply-templates/> with no select attribute would do that.

> A select="p/*" does not work,

* means elements you could do p/node() to include text nodes
or just use the default apply-templates and have no select attribute
(which is the same as select="node()" )

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
________________________________________________________________________

Received on Wednesday, 25 August 2004 09:02:16 UTC