silverfang
Programmer
When I am working with an xsl stylesheet and I want to display something like:
<1>
<2>
<3>
<4></4>
<4></4>
<4></4>
<4></4>
</3>
</2>
<2>
<3>
<4></4>
<4></4>
</3>
</2>
</1>
... with <xsl:value-of select="1/2/3/4"/> it only displays the first <4>-tag of each <3>-element. How can I display them al if I have a random number of <4>-tags
<1>
<2>
<3>
<4></4>
<4></4>
<4></4>
<4></4>
</3>
</2>
<2>
<3>
<4></4>
<4></4>
</3>
</2>
</1>
... with <xsl:value-of select="1/2/3/4"/> it only displays the first <4>-tag of each <3>-element. How can I display them al if I have a random number of <4>-tags