RichFaces-4.2.2 dataScroller só fucniona no IE?

Amigos,
já fiz todos os testes possíveis e o dataScroller teima em funcionar somente no IE, Firefox e Chrome nada.

Esse é o jsf:

<?xml version=“1.0” encoding=“ISO-8859-1”?>
<ui:composition xmlns=“http://www.w3.org/1999/xhtml
xmlns:ui=“http://java.sun.com/jsf/facelets
xmlns:h=“http://java.sun.com/jsf/html
xmlns:f=“http://java.sun.com/jsf/core
xmlns:a4j=“http://richfaces.org/a4j
xmlns:rich=“http://richfaces.org/rich
xmlns:c=“http://java.sun.com/jsp/jstl/core
xmlns:fn=“http://java.sun.com/jsp/jstl/functions”>

&lt;h:form id="form"&gt;
		&lt;rich:dataTable value="#{sistemasBean.sistemas}" var="sistema"
			iterationStatusVar="it" id="table" rows="3" reRender="scroller"&gt;
			&lt;rich:column
				filterExpression="#{fn:startsWith(sistema[1], sistemasBean.sistemaFilter)}"&gt;
				&lt;f:facet name="header"&gt;
					&lt;h:panelGroup&gt;
						&lt;h:outputText value="Busca: " /&gt;
						&lt;h:inputText value="#{sistemasBean.sistemaFilter}"&gt;
							&lt;a4j:ajax event="blur" render="table" execute="@this" /&gt;
						&lt;/h:inputText&gt;
					&lt;/h:panelGroup&gt;
				&lt;/f:facet&gt;
			        &lt;h:outputText value="#{sistema[1]}" /&gt;
			&lt;/rich:column&gt;
			&lt;f:facet name="footer"&gt;
				&lt;rich:dataScroller id="scroller" page="#{sistemasBean.page}"
					for="table" rendered="true" boundaryControls="hide"
					fastControls="hide"/&gt;
			&lt;/f:facet&gt;
		&lt;/rich:dataTable&gt;
&lt;/h:form&gt;

</ui:composition>

Esse é o bean:


@ManagedBean
@SessionScoped
public class SistemasBean implements Serializable {

private static final long serialVersionUID = 1L;
@PersistenceContext(unitName="MYENTITY") EntityManager manager;
@EJB SistemasRepository repository;
private List&lt;Object[]&gt; sistemas;
private List&lt;SelectItem&gt; itensSistemas;
private int currentSistemaIndex;
private Object[] sistemaSelecionado;
private int page = 1;
private String sistemaFilter;

@PostConstruct
public void init() {
	repository.setManager(manager);
}

public List &lt;SelectItem&gt; getItensSistemas () {
	sistemas = new ArrayList&lt;Object[]&gt;();
	sistemas = repository.getList ();
	itensSistemas = new ArrayList&lt;SelectItem&gt; ( sistemas.size() );

	for ( Object[] sistema : sistemas ) {
		itensSistemas.add ( new SelectItem ( sistema[0], (String) sistema[1], (String) sistema[2] ) );
	}
	return itensSistemas;
}
     ... getters e setters

Estou usando JBoss 7.1 e RichFaces 4.2.2.

Ninguém?
Estou quase desistindo de usar o dataScroller, já tentei de tudo.

Meu caso é o contrário.

O datascroller não funciona direito nos IEs. Quando clico em avançar página ele nao muda, a menos que utilize uma tag no header da página com content=emulateIE8, por exemplo. Ainda assim, ele muda de página mas embaralha os dados vindos do banco as vezes. Só FF e Chrome mostram corretamente.

Tente adicionar no datascroller o reRender=“nomeDaSuaDataTable”.

De uma olhada aqui sobre ele http://stackoverflow.com/questions/1973711/richdatascroller-does-not-refresh-richdatatable-in-jsf

Aqui uso rich 3.3.0 GA e jsf 1.2, por isso não sei se vai funcionar.

[quote]Ninguém?
Estou quase desistindo de usar o dataScroller, já tentei de tudo.[/quote]

Aconselho a usar o primefaces se puder, o RichFaces é muito incompatível.

Estou tentando implementar o primefaces como alternativa ao problema do richfaces no IE, porém sem sucesso.

No .xhtml adionei a tag xmlns:p=“http://primefaces.prime.com.tr/ui

Adicionei o .jar no resource e defini o memso no web.xml.
Até ai tudo bem, no editor ele reconhece os componentes sem problemas. Porém não os renderiza muito bem. O <p:editor> por exemplo fica um box que não chama as opções do editor como visto aqui: http://javasemcafe.blogspot.com.br/2010/10/20102010-4tads-configuracao-do.html

Não tenho a possibilidade de migrar para JSF 2 nem usar richfaces 4. Estamos aqui com JSF 1.2 e rich 3.3.0.