blob: 6401a98763ff54de5c6b0faa25dd004bf90229ec (
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
|
package com.vaadin.tests.tickets;
import com.vaadin.Application;
import com.vaadin.tests.TestForTablesInitialColumnWidthLogicRendering;
import com.vaadin.ui.UI.LegacyWindow;
import com.vaadin.ui.Table;
public class Ticket2434 extends Application.LegacyApplication {
@Override
public void init() {
LegacyWindow w = new LegacyWindow();
setMainWindow(w);
Table t = TestForTablesInitialColumnWidthLogicRendering.getTestTable(3,
50);
t.setPageLength(0);
t.addStyleName("bordered");
w.addComponent(t);
setTheme("tests-tickets");
}
}
|