Bonjour,

Je fais un code en XSLT et j;essaye d'y inserer une drop down list.
Ceci ne marche pas et je ne sais pas comment m'y prendre...
voici mon code:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     xmlns:xs="http://www.w3.org/2001/XMLSchema"
     version="2.0">
<xsl:output method="html"/>
 
<xsl:template match="imports">
<html>
		<head>
			hgfdytrhgf
		</head>
		<body>
			<h1>Welcome to my Test</h1>
			<hr></hr>
 
				<center>
<form name="form">
					<select name="date" size=1>
							<option value="week">Week</option>
							<option value="day">Day</option>
							<option value="month">Month</option>
							<option value="quarter">Quarter</option>
							<option value="year">Year</option>
					</select>
					<input type=button value="Choose Date" onClick="alert('Clicked')"></input>
				</form>
				</center>
...

Apparemment il aime pas trop les multi champs mais je ne sais pas trop pourquoi.

si quelqu'un avait une idée ce serai cool.
Merci

Joey