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
115
116
117
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.terminal.gwt.client.ui;
import java.util.ArrayList;
import java.util.Iterator;
import com.google.gwt.event.dom.client.ChangeEvent;
import com.vaadin.terminal.gwt.client.BrowserInfo;
import com.vaadin.terminal.gwt.client.UIDL;
import com.vaadin.terminal.gwt.client.Util;
public class VNativeSelect extends VOptionGroupBase implements Field {
public static final String CLASSNAME = "v-select";
protected TooltipListBox select;
private boolean firstValueIsTemporaryNullItem = false;
public VNativeSelect() {
super(new TooltipListBox(false), CLASSNAME);
select = (TooltipListBox) optionsContainer;
select.setSelect(this);
select.setVisibleItemCount(1);
select.addChangeHandler(this);
select.setStyleName(CLASSNAME + "-select");
}
@Override
protected void buildOptions(UIDL uidl) {
select.setClient(client);
select.setEnabled(!isDisabled() && !isReadonly());
select.clear();
firstValueIsTemporaryNullItem = false;
if (isNullSelectionAllowed() && !isNullSelectionItemAvailable()) {
// can't unselect last item in singleselect mode
select.addItem("", (String) null);
}
boolean selected = false;
for (final Iterator<?> i = uidl.getChildIterator(); i.hasNext();) {
final UIDL optionUidl = (UIDL) i.next();
select.addItem(optionUidl.getStringAttribute("caption"),
optionUidl.getStringAttribute("key"));
if (optionUidl.hasAttribute("selected")) {
select.setItemSelected(select.getItemCount() - 1, true);
selected = true;
}
}
if (!selected && !isNullSelectionAllowed()) {
// null-select not allowed, but value not selected yet; add null and
// remove when something is selected
select.insertItem("", (String) null, 0);
select.setItemSelected(0, true);
firstValueIsTemporaryNullItem = true;
}
if (BrowserInfo.get().isIE6()) {
// lazy size change - IE6 uses naive dropdown that does not have a
// proper size yet
Util.notifyParentOfSizeChange(this, true);
}
}
@Override
protected String[] getSelectedItems() {
final ArrayList<String> selectedItemKeys = new ArrayList<String>();
for (int i = 0; i < select.getItemCount(); i++) {
if (select.isItemSelected(i)) {
selectedItemKeys.add(select.getValue(i));
}
}
return selectedItemKeys.toArray(new String[selectedItemKeys.size()]);
}
@Override
public void onChange(ChangeEvent event) {
if (select.isMultipleSelect()) {
client.updateVariable(id, "selected", getSelectedItems(),
isImmediate());
} else {
client.updateVariable(id, "selected", new String[] { ""
+ getSelectedItem() }, isImmediate());
}
if (firstValueIsTemporaryNullItem) {
// remove temporary empty item
select.removeItem(0);
firstValueIsTemporaryNullItem = false;
}
}
@Override
public void setHeight(String height) {
select.setHeight(height);
super.setHeight(height);
}
@Override
public void setWidth(String width) {
select.setWidth(width);
super.setWidth(width);
}
@Override
protected void setTabIndex(int tabIndex) {
((TooltipListBox) optionsContainer).setTabIndex(tabIndex);
}
public void focus() {
select.setFocus(true);
}
}
|