aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/components/table/TextFieldRelativeWidth.java
blob: 4799d0541595ab8f89edf92b3fe0978b61b7c4ad (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
package com.vaadin.tests.components.table;

import com.vaadin.data.Item;
import com.vaadin.data.util.IndexedContainer;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractTestUI;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Component;
import com.vaadin.ui.Table;
import com.vaadin.ui.TextField;

public class TextFieldRelativeWidth extends AbstractTestUI {

    @Override
    public void setup(VaadinRequest request) {
        TextField tf = new TextField("test", "testing");
        tf.setWidth("100%");

        EditTable t = new EditTable();
        t.setButtonCaption("Click to add new Key Research Question");
        t.setInputPrompt("Key Reseach question");
        t.setInputPromptChild("Question details");
        t.addNewRow();
        addComponent(t);
    }

    public class EditTable extends Table implements Button.ClickListener {

        private Button addButton = new Button("Add new row", this);

        private String inputPrompt;
        private String inputPromptChild;
        private int nextItemIndex = 1;

        @SuppressWarnings("unchecked")
        public EditTable() {
            setColumnHeaderMode(ColumnHeaderMode.HIDDEN);
            inputPrompt = "";
            setPageLength(100);
            setHeight("100%");
            setSizeFull();
            addContainerProperty("id", Integer.class, null);
            addContainerProperty("text", Component.class, null);
            addContainerProperty("button", Button.class, null);
            setColumnExpandRatio("text", 1);
            Item i = getItem(addItem());
            i.getItemProperty("text").setValue(addButton);
            setImmediate(true);
            setSelectable(true);
        }

        @SuppressWarnings("unchecked")
        public void addNewRow() {
            IndexedContainer idc = (IndexedContainer) getContainerDataSource();
            int size = idc.size();
            Object itemId = idc.addItemAt(size - 1);
            Item newItem = idc.getItem(itemId);
            TextField tf = new TextField();
            if (inputPrompt != null && inputPrompt.length() > 0) {
                tf.setInputPrompt(inputPrompt);
            }
            tf.setWidth("100%");

            newItem.getItemProperty("id").setValue(nextItemIndex);
            nextItemIndex++;
            newItem.getItemProperty("text").setValue(tf);
            setValue(itemId);
            itemId = idc.addItemAt(size);
            newItem = idc.getItem(itemId);

            tf = new TextField();
            if (inputPromptChild != null && inputPromptChild.length() > 0) {
                tf.setInputPrompt(inputPromptChild);
            }
            tf.setWidth("100%");
            tf.addStyleName("childtf");
            newItem.getItemProperty("text").setValue(tf);

        }

        public void setButtonCaption(String caption) {
            addButton.setCaption(caption);
        }

        @Override
        public void buttonClick(ClickEvent event) {
            Button b = event.getButton();
            if (b == addButton) {
                select(getNullSelectionItemId());
                addNewRow();
            }
        }

        public void setInputPrompt(String string) {
            inputPrompt = string;
        }

        public void setInputPromptChild(String string) {
            inputPromptChild = string;
        }

    }

    @Override
    protected String getTestDescription() {
        return "The table has 3 columns. The second column is expanded and contains 100% wide textfields. These should fill the available space. The third column is empty.";
    }

    @Override
    protected Integer getTicketNumber() {
        return 3145;
    }
}