Hi,
I want to generate something like that:
HTML Code:
<xsl:variable name="U" select="count($TEST)"/>
<cell dim="U 1"> %%% so the Dimension should be dynamic
<xsl:for-each select="$TEST[position() mod 7 =1]">
<struct dim="1 1">
<rec>
..............
the Problem is the part: <cell dim= "U 1">, how can i manage to get the number of U in there?