J'ai un problème dans mon modalPanel, l'attribut {price} me renvoie null. Enfin bon, le code vous fera comprendre.

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:dataTable value="#{packsTableBean.packList}" var="row">		
        <rich:column>
          ...
        </rich:column>
 
	<rich:componentControl event="onRowClick" for="confirmPanel"
		operation="show">
		<f:param value="#{row.price}" name="price" />
		<f:param value="#{row.length}" name="length" />
	</rich:componentControl>
</rich:dataTable>
 
<rich:modalPanel id="confirmPanel" autosized="true">
	<f:facet name="header">Confirmer</f:facet>
	<h:outputText value="Confirmer la demande de ce pack? {price}" />
</rich:modalPanel>