blob: 69282687307f02f7922f88b74b885a309688ee64 (
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
|
package com.vaadin.tests.components.datefield;
import java.util.Locale;
import com.vaadin.server.VaadinRequest;
import com.vaadin.shared.ui.datefield.DateResolution;
import com.vaadin.tests.components.AbstractReindeerTestUI;
import com.vaadin.ui.AbstractLocalDateField;
import com.vaadin.ui.Button;
import com.vaadin.ui.DateField;
import com.vaadin.ui.HorizontalLayout;
import com.vaadin.ui.Label;
public class DateFieldChangeResolution extends AbstractReindeerTestUI {
public static final String DATEFIELD_ID = "datefield";
// The ID of a button is BUTTON_BASE_ID + resolution, e.g. button-month
public static final String BUTTON_BASE_ID = "button-";
@Override
protected void setup(VaadinRequest request) {
final AbstractLocalDateField dateField = new DateField("Enter date");
dateField.setResolution(DateResolution.YEAR);
dateField.setId(DATEFIELD_ID);
addComponent(dateField);
Label l = new Label("Select resolution");
addComponent(l);
HorizontalLayout hlayout = new HorizontalLayout();
addComponent(hlayout);
for (final DateResolution value : DateResolution.values()) {
String resolutionString = value.toString().toLowerCase(Locale.ROOT);
Button button = new Button(resolutionString);
button.addClickListener(event -> dateField.setResolution(value));
button.setId(BUTTON_BASE_ID + resolutionString);
hlayout.addComponent(button);
}
}
@Override
protected String getTestDescription() {
return "The calendar should always have the correct resolution and the text field should be empty before selecting a date.";
}
@Override
protected Integer getTicketNumber() {
return 14174;
}
}
|