blob: e489e0b02dead24540495e360dfd57fbe41acb32 (
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.server.LegacyApplication;
import com.vaadin.tests.TestForTablesInitialColumnWidthLogicRendering;
import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.Table;
public class Ticket2434 extends 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");
}
}
|