blob: 7cc472753bb957963ad5eedde6b72dfac60855e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
package com.vaadin.tests.components.table;
import com.vaadin.event.dd.DragAndDropEvent;
import com.vaadin.event.dd.DropHandler;
import com.vaadin.event.dd.acceptcriteria.AcceptAll;
import com.vaadin.event.dd.acceptcriteria.AcceptCriterion;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractReindeerTestUI;
import com.vaadin.ui.DragAndDropWrapper;
import com.vaadin.ui.DragAndDropWrapper.DragStartMode;
import com.vaadin.ui.Label;
import com.vaadin.v7.ui.Table;
/**
* Test UI for empty table: empty table (without any data) throws client side
* exception if it's a target for DnD.
*
* @author Vaadin Ltd
*/
public class DndEmptyTable extends AbstractReindeerTestUI {
@Override
protected void setup(VaadinRequest request) {
Label source = new Label("label");
DragAndDropWrapper wrapper = new DragAndDropWrapper(source);
wrapper.setDragStartMode(DragStartMode.WRAPPER);
addComponent(wrapper);
Table target = new Table();
target.setWidth(100, Unit.PERCENTAGE);
addComponent(target);
target.setDropHandler(new DropHandler() {
@Override
public AcceptCriterion getAcceptCriterion() {
return AcceptAll.get();
}
@Override
public void drop(DragAndDropEvent event) {
}
});
}
@Override
protected String getTestDescription() {
return "Drag and drop into empty table should not throws client side exception.";
}
@Override
protected Integer getTicketNumber() {
return 13655;
}
}
|