Hi,
I have a problem when I want to use a dataTable together with a dataScroller.
Heres a code snippet:
<a4j:form>
<f:loadBundle basename="resources.application" var="msg" />
....
<a4j:region id="all">
<a4j:outputPanel id="mseItemsPanel" >
<a4j:outputPanel rendered="#{mse.mseItemsVisible}">
<rich:dataTable
binding="#{mse.mseItemTable}"
rows="#{mse.numberOfVisibleRows}"
id="mseShow_mseItems"
styleClass="mse_items"
rowClasses="heading"
value="#{mse.mseItems}"
var="item">
<f:facet name="header">
<rich:columnGroup>
<h:column> <h:outputText
value="#{msg.continious_number_short}" />
</h:column>
</rich:columnGroup>
</f:facet>
<h:column>
<h:inputText
value="#{item.someValue}"/>
</h:column>
</rich:dataTable>
<rich:datascroller
binding="#{mse.dataScroller}"
id="dsMseItems"
for="mseShow_mseItems"
/>
</a4j:outputPanel>
</a4j:outputPanel>
</a4j:region>
....
</a4j:form>use ajaxSingle="false" on the scroller. And it will submit the form.