the XML file:
Code:
<?xml .....
<app name="A" path="">
<app name="B" path="p1">
<app name="C" path="p2" />
<app name="D" path="p3" />
</app>
<app name="E" path="p4" />
</app>
Then in XSLT file I set with javascript a variable path="p2":
Code:
<xsl:variable name="path" select="'p2'" />
How can I get with XSLT a path route like this:
A :: B :: C <- this is output of XSLT
I am totally confused but I am sure XSLT can do this.