I have this code
    <f:view>
        <a4j:keepAlive beanName="datosCtrlBean" ajaxOnly="true"/>
        <h:form>
            <rich:dataTable   width="300" id="carList" rows="10" columnClasses="col"
                            value="#{datosCtrlBean.datos}" var="category"  >
                <f:facet name="header">
                    <rich:columnGroup>
                        <h:column>
                            <h:outputText styleClass="headerText" value="Make" />
                        </h:column>
                    </rich:columnGroup>
                </f:facet>
                <h:column>
                    <h:outputText value="#{category}" />
                </h:column>
                <f:facet name="footer">
                </f:facet>
            </rich:dataTable>
            <rich:datascroller align="left" for="carList" id="sc2" />
        </h:form>
    </f:view>
datascroller working fine but the list of dataTable doesn´t refresh, but if I change by h:dataTable work fine.
what am I doing wrong??