Thomas Meinike: Auswahlliste in XSL

Beitrag lesen

Hallo,

Gibt es irgendwo im Netz ein Beispiel?

Schau Dir mal diesen Workshop an: http://www.datenverdrahten.de/iproxslt/.

Fuer Dein Problem sollte etwa dieses Vorgehen zutreffen:

test.xml

<?xml version="1.0" encoding="ISO-8859-1"?>

<wurzel>

<datum>04.09.2003</datum>
<datum>05.09.2003</datum>
<datum>06.09.2003</datum>

</wurzel>

test.xsl

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output
    method="html"
    doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"
    doctype-system="http://www.w3.org/TR/html401/loose.dtd"
    encoding="ISO-8859-1"
    version="4.01"
    media-type="text/html"
    indent="yes"
/>

<xsl:template match="/">

<html>
<head>
<title>Test by TM 08/03</title>
</head>
<body>

<form action="">
  <select size="1" name="datum"><option>Datum</option>
  <xsl:for-each select="wurzel/datum">
    <option value="{.}"><xsl:value-of select="."/></option>
  </xsl:for-each>
  </select>
</form>

</body>
</html>

</xsl:template>
</xsl:stylesheet>

MfG, Thomas