2 Replies Latest reply on Sep 3, 2009 12:43 PM by snowhite

    rich:scrollableDataTable not scrolling

    snowhite

      Hi,

      I have a rich:scrollableDataTable with 6 columns in a .xhtml page. When I tried to access that page, I can see the table with data in it. But I am not getting horizontal or vertical scroll bars. Also, I am getting an extra column in the table with no data in it. Is this an issue with richfaces version?? Any help will be appreciated.

      <rich:scrollableDataTable value="#{inventoryDetail}" var="item" frozenColCount="1" sortMode="single" >
       <rich:column id="id" label="Id" sortable="true" sortBy="#{item.id}">
       <f:facet name="header">
       <h:outputText value="Id" />
       </f:facet>
       <h:outputText value="#{item.id}" />
       </rich:column>
       <rich:column id="name" label="Name" sortable="true" sortBy="#{item.name}">
       <f:facet name="header">
       <h:outputText value="Name" />
       </f:facet>
       <h:outputText value="#{item. name}" />
       </rich:column>
       .........
       ........
       <rich:column id="price" label="Price" sortable="true" sortBy="#{item.price}">
       <f:facet name="header">
       <h:outputText value="Price" />
       </f:facet>
       <h:outputText value="#{item. price}" />
       </rich:column>
      </rich:scrollableDataTable>
      

      My richfaces version is 3.3.1 GA
      Browser: Mozila 3.0.13 and IE 8.0


      Thanks