I\'ve this enum in the xsd file:
This stylesheet will output a list of <option/>
s:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xsl:template match="xs:simpleType[@name='SO']/xs:restriction">
<xsl:for-each select="xs:enumeration"><option><xsl:value-of select="@value"/></option></xsl:for-each>
</xsl:template>
</xsl:stylesheet>