salut ,je voudrait utiliser a4j:commandLink au lieu h:commandLink
ca parait bien fonctionner sauf un petit probleme:
j'ai une datatable qui ne sera affiché qu'à la suite d'un clique sur un commandLink;avec h:commandLink ca va bien mais avec a4j:commandLink mon datatable n'est jamais affiché.
voici mon code:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
 
<rich:dataList id="inboundEndpoint"
		value="#{servicesInboundEndpoints.listInboundEndpointsName}"
		var="in">
	<a4j:commandLink value="#{in}"
			action="#{servicesInboundEndpoints.inboundEndpointsAtt}"
			binding="#{servicesInboundEndpoints.enpointCourant}" 
			reRender="services"/>
</rich:dataList>
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
 
<rich:dataTable  value="#{servicesInboundEndpoints.listAtt}"
			var="monMBeanAttributs" border="1"
			styleClass="classTab"
	rendered="#{servicesInboundEndpoints.afficherOperationsETattributs}"
			id="services">
comment contourner ce probleme?