Hi
In my page user can move up and down ListMultipleChoice content by jquery
and now I need to take all ordered ListMultipleChoice items,
For exampe
1 - original items in the ListMultipleChoice
2- user move up and down some items
3 - I need to get new ordered ListMultipleChoice from wicket
I
I can get all ListMultipleChoice rows after jquery selection if i select
non-ajax way.
Button btnSave = new Button(btnSave) {
@Override
public void onSubmit() {
for (String s : MODEL) {
System.out.println(-- + s);
}