I have a table s0Test1
attached to a class s0Test
. The table has 4-5 attributes. I want to display them in HTML. I used:
<xsl:template match="DBE:Object" mode="s0Test">
<table>
<tr>Test1</tr>
<tr>
<td><font size="2"> <xsl:apply-templates select="DBE:Attribute[@name='s0Test1']"/></font></td>
</tr>
</table>
</xsl:template>
Please let me know how should I go ahead to display the attributes?