hii everybody
i have an orderingList. but when i select the list. i am not getting the selected items in the backend
my .xhtml code is
<rich:orderingList id="ol" value="#{componentBean.componentList}" var="row" selection="#{componentBean.selection}" >
.......
</rich:orderingList>
<a4j:commandButton value="reRender" ></a4j:commandButton>
public void setSelection(Collection selection) {
System.out.println("set selection " + selection);
this.selection = selection;
}
public Collection getSelection() {
System.out.println("inside getselection "+ selection);
return selection;
}
check please from server log if there conversion/validation problems.