Hi everyone , I'm using richfaces 3.3.0 with JSF 1.2 , so far so good. I've just created a simple listing page with the rich:dataTable tag:
<rich:dataTable rowClasses="row1,row2" rows="3" value="#{pessoaBean.pessoasCadastradas}"
var="person">
<f:facet name="header"> Titulo Tabela </f:facet>
<f:facet name="caption"> Caption da tabela </f:facet>
<rich:column>
<f:facet name="header"> Nome </f:facet>
<h:outputText value="#{person.nome}" />
</rich:column>
<f:facet name="footer">
<rich:datascroller selectedStyle="font-weight:bold"/>
</f:facet>
</rich:dataTable>Hello,
rich:datascroller should not fetch all data, only the displayed once + overall number of records. So, can you please tell what: "#{pessoaBean.pessoasCadastradas}" is and how do you check that all rows are fetched?