salut
j'ai un petit probleme avec l'attribut rendered
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
<rich:dataTable
	value="#{servicesInboundEndpoints.listAtt}"
	var="monMBeanAttributs" border="1"
	rendered="#{servicesInboundEndpoints.afficherOperationsETattributs}">
dans un bean 'j'appelle le bean servicesInboundEndpoints et je met afficherOperationsETattributs=false
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
ServicesInboundEndpoints in =new ServicesInboundEndpoints();
		in.setAfficherOperationsETattributs(false);
		System.out.println("affich1="+in.getAfficherOperationsETattributs());
		in.recupererInboundEndpoints();
		System.out.println("affich2=="+in.getAfficherOperationsETattributs());
le probleme est que les deux 'System.out.println' affichent false mais pouratant le datatable est affiché?