blob: 9528f2c56bdf84fc3cad2dfaf0b6ad62d4bbeeb2 (
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.Application;
import com.vaadin.ui.GridLayout;
import com.vaadin.ui.UI.LegacyWindow;
import com.vaadin.ui.TextField;
public class Ticket2026 extends Application {
@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);
}
}
|