Hello,
I am using a version of the ExtendedDataModel example in the demo with MyFaces 1.1.5 as the JSF Implementation. In my use case I would like to force the dataprovider to update the database on a button click, like this...
....
<a4j:form>
<a4j:commandLink value="Update" actionListener="#{bean.updateItems}"/>
....
<a4j:outputPanel layout="block" style="height:300px;overflow:auto" ajaxRendered="true">
<rich:datascroller id="scroller" for="out" maxPages="10"/>
<rich:dataTable
var="data" value="#{bean.dataObject}" id="out"
rowKeyVar="rowKey" rows="10">
....
</rich:dataTable>
</a4j:outputPanel>
</a4j:form>
...