Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Shuttle multiple values fetched only a few values

3265832Nov 3 2016 — edited Nov 3 2016

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 !

This post has been answered by Timo Hahn on Nov 3 2016
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 1 2016
Added on Nov 3 2016
2 comments
192 views