4 Replies Latest reply on Jan 25, 2008 7:15 AM by konstantin.mishin

    scrollableDataTable and Sorting

      I am using seam and facelets, along with JBoss 4.2.0...

      First, let me say how nice the new release is....congrats...

      I only have 1 problem....I cant get sorting working on scrollableDataTable....


      Code...

      
       <rich:scrollableDataTable
       frozenColCount="1"
       height="400px"
       width="700px"
       id="userList"
       rows="40"
       columnClasses="col"
       value="#{usermanager.users}"
       var="vuser"
       sortMode="single">
      
       <rich:column id="usern">
      
       <f:facet name="header"><h:outputText styleClass="headerText" value="Username" /></f:facet>
      
       <h:outputText value="#{vuser.username}" />
      
       </rich:column>
      
      
       </rich:scrollableDataTable>
      
      


      Ideas?

      THanks

      Indy