Bonjour,

J'ai un soucis avec une jsp qui contient deux types de tag dont voici un extrait:
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
 
		<div class="row"> 
			<span class="label"> 
				<label for="nomEtab" title="Nom de l'établissement">Nom de l'établissement<span class="obligatoire">*</span></label>
			</span>
			<span class="formw">
				<html:text styleClass="champs" maxlength="40" errorStyleClass="champsError" name="EtabAddInformationsForm" property="nomEtab"/>
			</span>
		</div>
		<div class="row"> 
			<span class="label"> 
				<label for="communeEtab" title="Localisation de l'&eacute;tablissement">Commune où canton de l'&eacute;tablissement<span class="obligatoire">*</span></label> 
			</span>
			<span class="formw">
				<layout:suggest timeout="0" styleClass="champs" maxlength="50" errorStyleClass="champsError" layout="false" styleId="communeCanton" property="commune" suggestAction="/getCommuneCanton" suggestCount="10" />		
			</span>
		</div>
		<div class="row">
			<span class="label"> 
				<label for="telEtab" title="Num&eacute;ro de t&eacute;l&eacute;phone de l'&eacute;tablissement">Num&eacute;ro de t&eacute;l&eacute;phone de l'établissement<span class="obligatoire">*</span></label> 
			</span>
			<span class="formw">
				<html:text  styleClass="champs" errorStyleClass="champsError" maxlength="10" name="EtabAddInformationsForm" property="telEtab"/>
			</span>
		</div>
Lorsque je saisie, valide puis fait précédent, je suis censé avoir mes formulaires de rempli avec les valeurs saisies.
Mon problème est que tout champs avant une balise layout ( ici layout:suggest ) seras remplis les autre seront vide...

Quelqu'un sais pourquoi j 'ai ce problème?

Merci