You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by Steve Olara <st...@yahoo.co.uk> on 2009/07/25 14:38:41 UTC

Re:getting SortableListView Value

I have a sortableListView on a form
 
slv=new SortableListView("itemList", "item", mlist2) {
            public void populateItemInternal(final ListItem item) {
                item.add(new Label("label", item.getModel()));
            }
        };
        formm.add(slv);
I would like to get the list of the new value in the view when the form is submited, can someone explain how to do that.
 
Thanks in advance
 
Regards
 
Stephen