can someone provide me an example of how to use th rich: orderingList control? I got to the point where I can display the data the way I wanted, but now I really wanted the modified order to propagate to the server. I can not find anything on this subject.
<rich:orderingList value="#{countryHandler.data}" var="country">
<rich:column>
<f:facet name="header">
<h:outputText value="id"/>
</f:facet>
<h:outputText value="#{country.id}"/>
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="code"/>
</f:facet>
<h:outputText value="#{country.code}"/>
</rich:column>
and my bean support contains property data that only returns a List <Country>.
So again: how can I populate the changed order of objects back to the server?
source
share