Ok, I was able to do it, but how do I make the attributes of the JBU:table values for the table.
For example: border style, BGcolor etc..
Here is my XSLT
Code:
<xsl:template match="JBU:table">
<xsl:for-each select="JBU:tbody">
<table border="?????????">
<xsl:for-each select="JBU:tr">
<tr bgcolor="??????">
<xsl:for-each select="JBU:td">
<td>
<xsl:value-of select="."/>
</td>
</xsl:for-each>
</tr>
</xsl:for-each>
</table>
</xsl:for-each>
</xsl:template>
here are my attributes for JBU:table:
<xs:attribute name="align" type="xs:string"/>
<xs:attribute name="border"/>
<xs:attribute name="cellpadding"/>
<xs:attribute name="bgcolor"/>
<xs:attribute name="width"/>
<xs:attribute name="cellspacing"/>
<xs:attribute name="frame"/>
<xs:attribute name="rules"/>