[AIDE] Erreur BeanUtils.populate
Bonjour, sur ma page JSP j'ai un
Code:
1 2 3 4 5
|
<nested:select name="choix" property="client.choix">
<html:option value="true">oui</html:option>
<html:option value="false">A REVOIR</html:option>
</nested:select></td> |
lorsque je le laisse ainsi et que je soumet mon formulaire j'ai le droit a un
Citation:
Erreur BeanUtils.populate
Mais lorsque je met en commentaire une certaine partie mon formulaire est soumis correctement
Code:
1 2 3 4 5
|
<nested:select name="choix" property="client.choix">
<%-- <html:option value="true">oui</html:option>
<html:option value="false">A REVOIR</html:option> --%>
</nested:select></td> |