blob: 59efa74df808357ff1b771a471dc9fb9bbd48144 (
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
|
package com.vaadin.tests.tickets;
import com.vaadin.server.LegacyApplication;
import com.vaadin.ui.GridLayout;
import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.TextField;
public class Ticket2026 extends LegacyApplication {
@Override
public void init() {
LegacyWindow w = new LegacyWindow(getClass().getSimpleName());
setMainWindow(w);
GridLayout layout = new GridLayout(2, 2);
layout.setSpacing(true);
@SuppressWarnings("unused")
int nr = 5;
TextField tf;
tf = new TextField("TextField (tabIndex 1)");
tf.setTabIndex(1);
tf.focus();
layout.addComponent(tf);
layout.addComponent(new TextField("TextField without tab index"));
layout.addComponent(new TextField("TextField without tab index"));
layout.addComponent(new TextField("TextField without tab index"));
layout.addComponent(new TextField("TextField without tab index"));
tf = new TextField("TextField (tabIndex 2)");
tf.setTabIndex(2);
layout.addComponent(tf);
w.setContent(layout);
}
}
|