Hello all, I have a VO that has some 200-300 values I need in my Shuttle element. I have dragged the VO to the page and connected the shuttle to my backing bean method.
public void shuttle_for_stores(FacesContext facesContext, UIComponent uIComponent, Object object) {
BindingContainer bc = this.getBindingsCont();
JUCtrlListBinding listBindings = (JUCtrlListBinding)bc.get("mprodavaoniceV1");
Object str[] = listBindings.getSelectedValues();
for (int i=0; i < str.length; i++){
System.out.print(str[i]);
}
}
This is the method I found in this tutorial.
Somehow my shuttle element gets only 20 or so values from that 200-300 values list ? Should I enable "cache all" or something simillar ? Thank you !