Bonjour,

J'ai un SelectOneMenu avec un binding à un validateur :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
				<h:selectOneMenu binding="#{valideurRepondant.repondant1}" 
								 id="menuRepondants_#{id}" 
								 value="#{reclamantBean.repondant}" 
								 rendered="#{not reclamantBean.actionConsulter}">
					<f:converter converterId="ListeObjetsConverter" />
					<f:selectItem id="repondant1Vide_#{id}"/>
					<f:selectItems id="selectItemsRepondant_#{id}" value="#{reclamantBean.listeRepondants}" />
					<a4j:support 
							ajaxSingle="true" 
							event="onchange"
							reRender="idRepondant2_#{id}">
					</a4j:support>
				</h:selectOneMenu>
Le problème est que la liste d'items est toujours dupliquée. Dès que j'enlève le binding le problème disparait.

merci