salut
j'ai un datatable,initialement non affiché, sera affiché suite à un clique sur a4j:commandLink
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
 
<a4j:outputPanel id="ll">
	<h:dataTable id="services" value="#{muleservices.servicesLibelles}"
		var="item" >
		<h:column>
			<a4j:commandLink value="#{item.libelle}"
			action="#{servicesOperations.mesServicesOperations}"
		       binding="#{muleservices.serviceCourant}"
		styleClass="#{item.visited==true?'serviceActif':'serviceInactif'}" 
		reRender="ll,jj,nomService,rt"/>
		</h:column>
			</h:dataTable>
	</a4j:outputPanel>
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
 
<rich:tab label="Threading & Pooling" styleClass="classTab">
  <table >
	<tr>
		<td valign="top">
	           <h:panelGrid columns="1" rendered="#{servicesOperations.afficherTab}">
	<rich:panel bodyClass="inpanelBody" headerClass="outpanelHeader" 
			style="width : 250px;" styleClass="classTab" >
				<f:facet name="header" >
                   <h:outputText value="ThreadingProfile" id="thp"> 
                </f:facet>
 
			<rich:dataTable value="#{servicesThreadingProfile.listAtt}"
									var="monMBeanAttributs" border="1" styleClass="classTab" style="width : 170px;" id="rt">
			<rich:column style="width : 10px;">
 
...
mon probleme est que ma datatable ne sera affiché qu'à la suite d'un second clique