blob: d7ab5810921c022a410b981641b84b060e8f1070 (
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
|
/*
@ITMillApache2LicenseForJavaFiles@
*/
package com.vaadin.terminal.gwt.client;
import java.util.Iterator;
import com.google.gwt.user.client.DOM;
import com.google.gwt.user.client.Element;
import com.google.gwt.user.client.ui.FlowPanel;
import com.google.gwt.user.client.ui.HTML;
import com.vaadin.terminal.gwt.client.ui.VOverlay;
public class VErrorMessage extends FlowPanel {
public static final String CLASSNAME = "v-errormessage";
public VErrorMessage() {
super();
setStyleName(CLASSNAME);
}
public void updateFromUIDL(UIDL uidl) {
clear();
if (uidl.getChildCount() == 0) {
add(new HTML(" "));
} else {
for (final Iterator it = uidl.getChildIterator(); it.hasNext();) {
final Object child = it.next();
if (child instanceof String) {
final String errorMessage = (String) child;
add(new HTML(errorMessage));
} else {
try {
final VErrorMessage childError = new VErrorMessage();
childError.updateFromUIDL((UIDL) child);
add(childError);
} catch (Exception e) {
// TODO XML type error, check if this can even happen
// anymore??
final UIDL.XML xml = (UIDL.XML) child;
add(new HTML(xml.getXMLAsString()));
}
}
}
}
}
/**
* Shows this error message next to given element.
*
* @param indicatorElement
*/
public void showAt(Element indicatorElement) {
VOverlay errorContainer = (VOverlay) getParent();
if (errorContainer == null) {
errorContainer = new VOverlay();
errorContainer.setWidget(this);
}
errorContainer.setPopupPosition(
DOM.getAbsoluteLeft(indicatorElement)
+ 2
* DOM.getElementPropertyInt(indicatorElement,
"offsetHeight"),
DOM.getAbsoluteTop(indicatorElement)
+ 2
* DOM.getElementPropertyInt(indicatorElement,
"offsetHeight"));
errorContainer.show();
}
public void hide() {
final VOverlay errorContainer = (VOverlay) getParent();
if (errorContainer != null) {
errorContainer.hide();
}
}
}
|