嗨,我是 rich:orderingList 的新手,我需要在 jsf 控制器中以新顺序排列内容后获取新列表。
以下是我的一段 XHTML 代码
<h:form id="editscreenrankForm">
<a4j:outputPanel id="edit-screenrank-fields">
<rich:orderingList value="#{currencyController.rankingList}" var="ranking"
itemValue="#{ranking}" itemLabel="#{ranking.code} - #{ranking.name}">
</rich:orderingList>
</a4j:outputPanel>
<h:commandButton value="submit" type="submit" action="#currencyController.getList}"/>
</h:form>