2 Replies Latest reply on Aug 9, 2009 2:23 PM by riaworld

    How can i set the height of a rich:column ?

    riaworld

      I have this scrollable datatable

      <rich:scrollableDataTable rowKeyVar="rkv" frozenColCount="1" height="600px"
       width="700px" id="carList" rows="15" columnClasses="col"
       value="#{searchResult.dataScrollableTableResultSearchDoctors_.allCars}" var="category" sortMode="single"
       binding="#{searchResult.dataScrollableTableResultSearchDoctors_.table}"
      
       selection="#{searchResult.dataScrollableTableResultSearchDoctors_.selection}">
      
      
      
       <rich:column id="idFigure" rowspan="4" >
       <f:facet name="header"><h:outputText styleClass="headerText" value="Figure" /></f:facet>
       <h:graphicImage value="#{category.picture}"></h:graphicImage>
      
      
       </rich:column>
      
      
      
      
       <rich:column id="a">
       <f:facet name="header"><h:outputText styleClass="headerText" value="Information sur le docteur" /></f:facet>
       <h:outputText value="#{category.firstName}" />
       <h:outputText value="#{category.lastName}" />
       <h:outputText value="#{category.town}" />
       </rich:column>
      
      
      
      
      
      
       <rich:column id="b">
       <f:facet name="header"><h:outputText styleClass="headerText" value="Lundi" /></f:facet>
       </rich:column>
      
      
       </rich:scrollableDataTable>
      
      


      and i want to make something like this
       <rich:column id="a" height="200px" >
       <f:facet name="header"><h:outputText styleClass="headerText" value="Information sur le docteur" /></f:facet>
       <h:outputText value="#{category.firstName}" />
       <h:outputText value="#{category.lastName}" />
       <h:outputText value="#{category.town}" />
       </rich:column>
      


      How can do that please?