1 Reply Latest reply on Dec 13, 2012 4:03 AM by dbinder

    lost with ajax lazy loading and extendedDataTable

    dbinder

      Hi, folks

       

      I'm a very noob to richfaces and quite lost with lazy loading I tried to implement something similar to the showcase but the scrollbar don"t show up. here is some code I wrote with RF 4.2.3.

       

      <rich:extendedDataTable value="#{testModel.list}" var="s"  selectionMode="none" clientRows="20" style="height:300px; width:500px;" frozenColumns="1">
                          <f:facet name="header">
                      <h:outputText value="test table" />
                  </f:facet>
                                    <rich:column>
                                    <f:facet name="header">
                                    <h:outputText value="string" />
                                    </f:facet>
                                    #{s}
                                    </rich:column>
                          </rich:extendedDataTable>
      

       

      #{testModel.list} points to a simple List<String>

       

      Before you ask, I've spent my afternoon googling for this.

       

      Dave