diff options
Diffstat (limited to 'src/com/vaadin/terminal')
-rw-r--r-- | src/com/vaadin/terminal/gwt/client/ui/VUnknownComponent.java | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/ui/VUnknownComponent.java b/src/com/vaadin/terminal/gwt/client/ui/VUnknownComponent.java index e778316c5d..062df4f6ae 100644 --- a/src/com/vaadin/terminal/gwt/client/ui/VUnknownComponent.java +++ b/src/com/vaadin/terminal/gwt/client/ui/VUnknownComponent.java @@ -34,7 +34,12 @@ public class VUnknownComponent extends Composite implements Paintable { } setCaption("Widgetset does not contain implementation for " + serverClassName - + ". Check its @ClientWidget mapping, widgetsets GWT module descrioption file and re-compile your widgetset. Unrendered UIDL:"); + + ". Check its @ClientWidget mapping, widgetsets " + + "GWT module description file and re-compile your" + + " widgetset. In case you have downloaded a vaadin" + + " add-on package, you might want to refer to " + + "<a href='http://vaadin.com/using-addons'>add-on " + + "instructions</a>. Unrendered UIDL:"); if (uidlTree != null) { uidlTree.removeFromParent(); } @@ -44,6 +49,6 @@ public class VUnknownComponent extends Composite implements Paintable { } public void setCaption(String c) { - caption.setText(c); + caption.getElement().setInnerHTML(c); } } |