3 Replies Latest reply on Mar 4, 2008 1:57 AM by alexsmirnov.alsmirnnov.gmail.com

    How to customize rich:dataTable to only show a part of the resultList

      Hello, I customized (in the meaning of cropped) the seam-generated list to use it in a public form:


      <rich:dataTable var="person" value="#{personList.resultList}" rendered="#{not empty personList.resultList}">
        <h:column>
          <s:link view="/staffdetails.xhtml" value="#{person.title} #{person.firstName} #{person.lastName}" id="fullname">
            <f:param name="personId" value="#{person.id}"/>
          </s:link>
        </h:column>
        <h:column>#{person.department}</h:column>
      </rich:dataTable>



      Because there are only 2 columns I wanted to make some more instances of the dataTable and put them from left to right.


      So, if resultList is for example 80 elements, I want to show 1-20 in the first table, 21-40 in the next one, and so on ..
      Can this simply be done by an additional parameter or do I have to make a special function for each method?


      Thanks in advance, Pete