I have a dual list like this example without the buttons : https://gwt-dnd.appspot.com/#DualListExample
I want to drag a copy of the element selected from the left list to the right list. the element selected must be keeping in the left list. i want to be able to drop the element where i want in the right list and I want to be able to order elements in the right list too.
this code do almost what i want but the element selected is moved. it's not a copy.
import com.allen_sauer.gwt.dnd.client.drop.FlowPanelDropController;
import com.google.gwt.user.client.ui.AbsolutePanel;
import com.google.gwt.user.client.ui.HasVerticalAlignment;
import com.google.gwt.user.client.ui.HorizontalPanel;
import com.google.gwt.user.client.ui.Label;
/**
* Example of two lists side by side
*/
public class DualListBox extends AbsolutePanel {
public DualListBox() {
ListBoxDragController dragController = new ListBoxDragController(this);
MouseListBox left = new MouseListBox(dragController);
MouseListBox right = new MouseListBox(dragController);
FlowPanelDropController rightDropController = new FlowPanelDropController(right);
dragController.registerDropController(rightDropController);
HorizontalPanel horizontalPanel = new HorizontalPanel();
horizontalPanel.setVerticalAlignment(HasVerticalAlignment.ALIGN_MIDDLE);
left.setWidth("200px");
left.setHeight("200px");
right.setWidth("200px");
right.setHeight("200px");
horizontalPanel.add(left);
horizontalPanel.add(right);
add(horizontalPanel);
// add some widget to the list
left.addValue(new Label("Apples"));
left.addValue(new Label("Bananas"));
left.addValue(new Label("Cucumbers"));
}
}
/**
* DragController
*/
import com.allen_sauer.gwt.dnd.client.PickupDragController;
class ListBoxDragController extends PickupDragController {
ListBoxDragController(DualListBox dualListBox) {
super(dualListBox, false);
setBehaviorDragProxy(true);
setBehaviorMultipleSelection(true);
}
}
/**
* The MouseListBox
* Either left or right hand side of a DualListBox.
*/
import com.google.gwt.user.client.ui.FlowPanel;
import com.google.gwt.user.client.ui.Widget;
class MouseListBox extends FlowPanel {
private ListBoxDragController dragController;
/**
* Used by {@link FlowPanelDropController} to create a draggable listbox
* containing the selected item.
*/
MouseListBox() {
setWidth("200px");
setHeight("200px");
}
/**
* Used by DualListBox to create the left and right list boxes.
*/
MouseListBox(ListBoxDragController dragController) {
this();
this.dragController = dragController;
}
void addValue(Widget widget) {
if (dragController != null) {
dragController.makeDraggable(widget);
}
add(widget);
}
}
thx