3 Replies Latest reply on Oct 27, 2008 9:23 AM by ilya_shaikovsky

    resize <rich:column> don't work

    monstor

      Hello,

      I want to define the size of my rich column in an orderingLinst.

      
      <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>


      I try with "px" and without.

      If you have suggestions...

      Thanks in advance.
      Nicolas