Still need some help, if possible...
I now have a xlst that renders the list of products, and the detail, after clicking, as i desired.
What I need (and I'm not able to achive) is the list of all the records after the single record user decides to view.
I added after the last </table> in the detail view the following code:
<p>detail view</p>
<xsl:call-template name="ProductList" />
and i made a xsl:template named "PrdocutList" as follows:
<xsl:template name="ProductList" match="/udt:UserDefinedTable">
<xsl:variable name="currentData" select="udt:Data" />
<xsl:if test="$currentData">
<ul class="prodotti">
<xsl:apply-templates select="$currentData" mode="list">
</xsl:apply-templates>
</ul>
</xsl:if>
</xsl:template>
wich is a copy of the xlst code that generates the full listing, but nothing appears, so I must be misunderstanding something.
Some suggestions please?
TIA,
max.