Salut

J'ai un petit soucis avec les rich column dans un rich:orderingList

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
18
19
20
21
22
23
24
 
<rich:orderingList value="#{scenarioRepo.etapes}" var="_etape"
	listWidth="815" downControlLabel="Descendre" upControlLabel="Monter"
	topControlLabel="En premier" bottomControlLabel="En dernier"
	rendered="#{scenarioRepo.etapesNonVide}">
	<rich:column width="200px">
		<f:facet name="header">
			<io:label cle="etapeScenario.ordre" />
		</f:facet>
		<h:outputText value="#{_etape.ordre}" />
	</rich:column>
	<rich:column width="200px">
		<f:facet name="header">
			<io:label cle="etapeScenario.action" />
		</f:facet>
		<h:outputText value="#{_etape.action}" />
	</rich:column>
	<rich:column width="415px">
		<f:facet name="header">
			<io:label cle="etapeScenario.resultat" />
		</f:facet>
		<h:outputText value="#{_etape.resultatAttendu}" />
	</rich:column>
</rich:orderingList>
Mes colonnes ne sont pas dimensionnées correctement, j'ai l'impression que l'attribut width n'est pas pris en compte. J'ai essayé avec "px" et sans...

Ma version de richfaces : 3.2.2

Si quelqu'un a une idée...

PS : les balsies <io:label> est un composant que j'ai créé, pas de soucis de ce coté là