<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet href="xsltforms/xsltforms.xsl" type="text/xsl"?>
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:xf="http://www.w3.org/2002/xforms"
      xmlns:ev="http://www.w3.org/2001/xml-events"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>
<head>
	<title>Parfums</title>
	<style type="text/css">
	body { font-family: sans-serif}
	label { display: inline-block; width: 6em; margin: 0 1em }
	.select1 {display: inline-block; }
	</style> 
	<model xmlns="http://www.w3.org/2002/xforms">
		<instance>
		  <donnees xmlns="">
		    <parfums/>
          </donnees>
	    </instance>
	</model>
</head>
<body>
	<group xmlns="http://www.w3.org/2002/xforms">
	   <select ref="parfums" appearance="full">
	       <label>Parfums :</label>
	       <item>
		  <label>Vanille</label><value>v</value>
	       </item>
	       <item>
		  <label>Fraise</label><value>f</value>
	       </item>
	       <item>
		  <label>Chocolat</label><value>c</value>
	       </item>
	   </select><br/>
	   Valeur sélectionnée : <output ref="parfums"/>
	</group>
</body>
</html>
