I am using RF 4.0 Final with Apache MyFaces 2.0 on Tomcat 7. I just copied the code from RichFaces demo website for datatable and put it in my app. The data table loads the data but the ajax request response cycle never finishes as the spinning wheels on forever. In IE8 I can see the following error
Message: Object expected Line: 2 Char: 1 Code: 0 URI: http://localhost:8080/MINT/index.xhtml
Message: Could not complete the operation due to error 80020101. Line: 1 Char: 314 Code: 0 URI: http://localhost:8080/MINT/javax.faces.resource/jsf.js.xhtml?ln=javax.faces
Following is the code. Which is very simple nothing special but in it.
<ui:composition>
<rich:panel header="View/Edit Group Page">
<rich:dataTable value="#{groupBean.availableGroups}" var="group" iterationStatusVar="it">
<rich:column>
<f:facet name="header">#</f:facet>
#{it.index}
</rich:column>
<rich:column>
<f:facet name="header">Group Name</f:facet>
<h:outputText value="#{group.gname}" />
</rich:column>
<rich:column>
<f:facet name="header">Description</f:facet>
<h:outputText value="#{group.description}" />
</rich:column>
<f:facet name="footer">
<!-- <rich:dataScroller page="#{groupBean.page}" />-->
</f:facet>
</rich:dataTable>
</rich:panel>
When I replace the rich: tag with h: tag everything works fine. Is this something related to rich:datatable or there is something wrong with my setup. I posted it on jboss community for did not get any reply for three days. Hoping that may be someone can help me on this forum.