blob: 7d48dfa11e3677023e8e174bcf9f8012334a277b (
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
|
package com.vaadin.tests.components.table;
import com.vaadin.shared.ui.label.ContentMode;
import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.Button;
import com.vaadin.ui.Label;
import com.vaadin.ui.Table;
public class TableRowScrolledBottom extends TestBase {
@Override
protected void setup() {
final Table table = new Table();
table.setSizeFull();
table.addContainerProperty("Test", Label.class, null);
table.setHeight("100%");
Button button = new Button("Add 100 items");
button.addClickListener(new Button.ClickListener() {
int i = 0;
@Override
public void buttonClick(Button.ClickEvent event) {
for (int j = 0; j < 100; j++) {
++i;
table.addItem(
new Object[] { new Label(
"This is a test item with long text so that there is something to see Nr. <b>"
+ i
+ "</b>. This text must be long otherwise the timing issue on Firefox does not occur. This works fine in IE",
ContentMode.HTML) }, i);
table.setCurrentPageFirstItemIndex(table
.getContainerDataSource().size() - 1);
}
}
});
addComponent(table);
addComponent(button);
getLayout().setExpandRatio(table, 1f);
}
@Override
protected String getDescription() {
return "Table should be scrolled to bottom when adding rows and updating currentPageFirstItemIndex to last item";
}
@Override
protected Integer getTicketNumber() {
return 10970;
}
}
|