7 Replies Latest reply on Jul 4, 2007 11:08 AM by sharonbn

    help help..

    sharonbn

      ther is my code:
      h:form>





      <rich:dataTable
      id="datalist"
      styleClass="scrollerTable"
      columnClasses="firstColumn,secondColumn,thirdColumn"
      headerClass="firstHeader,secondHeader,thirdHeader"




      rows="4"
      value="#{playListBean.songsList}"
      var="data"
      border="3"
      >

      <f:facet name="header" >
      <rich:columnGroup >
      <h:column >
      <h:outputText value="Song Number" />
      </h:column>
      <h:column>
      <h:outputText value="Song Name" />
      </h:column>
      <h:column>
      <h:outputText value="Performer" />
      </h:column>

      </rich:columnGroup>
      </f:facet>


      <h:column>
      <h:outputText value="#{data.songNumber}" />
      </h:column>
      <h:column>
      <h:outputText value="#{data.songName}" />
      </h:column>
      <h:column>
      <h:outputText value="#{data.performer}" />
      </h:column>






      </rich:dataTable>
      <rich:datascroller maxPages="20" for="datalist" />





      </h:form>

      when i enter the site firs time i get a nice table with data and when i try to scroll next/prev its working ok but when i refresh the page and try again its not working...

      what's the problem??
      thenk's...