sortrank on child table

hi all

anybody no how to determine the number of rows a user has added. i am creating a table for the user data and need to have an initial column with rowspan set to the number of rows the user has added.

thanks
michelle

Hi Michelle

If this is XSL you should able to use the count() function entering the node you want to count.

<xsl:variable name="no_of_rows" select="count(/*/Childtable/row)" />

Cheers
James

great thank you