- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Please find below a section of the nl:dbdToOdt.xsl style sheet
<xsl:for-each select="/sqlSchema/table">
<xsl:sort select="@name"/> <----------------------------- is there any possibility to use a check here so that the tables used for the ODT is only my custom tables
<text:p text:style-name="P2">
<xsl:element name="text:a">
<xsl:attribute name="xlink:type">simple</xsl:attribute>
<xsl:attribute name="xlink:href">#1.<xsl:value-of select="position()"/>.<xsl:value-of select="@label"/>|outline</xsl:attribute>
<xsl:attribute name="text:style-name">Internet_20_link</xsl:attribute>
<xsl:attribute name="text:visited-style-name">Internet_20_link</xsl:attribute>
<xsl:value-of select="@name"/> (<xsl:value-of select="@label"/>)
</xsl:element>
Solved! Go to Solution.