[XForms] un champ "xsd:date" apparaît comme un champ normal
Bonjour,
j'ai un petit soucis avec ce langage, avec le "xsd:date" pour afficher un petit calendrier afin de choisir une date. Voici mon code :
Dans le HEAD :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| <head>
<title>Curriculum Vitae</title>
<xforms:model>
<xforms:instance xmlns="">
<data>
<firstname />
<lastname />
<birthday />
<sex />
<country />
<coverletter />
</data>
</xforms:instance>
<xforms:bind nodeset="date" type="xsd:date"/>
</xforms:model>
</head> |
La lige concernée est <xforms:bind nodeset="date" type="xsd:date"/>
Dans BODY :
Code:
1 2 3 4 5
| <p>
<xforms:input ref="birthday" incremental="true">
<xforms:label>Birthday</xforms:label>
</xforms:input>
</p> |
Et ça ne fonctionne pas, ça m'affiche un champ normal. :?