diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-05-14 11:10:40 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-05-14 11:10:40 +0000 |
commit | 4ff9b453dedc39db658b17991a4c06b70cd961ac (patch) | |
tree | 5942c5be90a315b5319cd0008fd11eaf6a3b7c37 /src/com/vaadin | |
parent | 35d139b3a80df67e6f4f291dd0115d3721ae81bf (diff) | |
download | vaadin-framework-4ff9b453dedc39db658b17991a4c06b70cd961ac.tar.gz vaadin-framework-4ff9b453dedc39db658b17991a4c06b70cd961ac.zip |
Fixed a bug which caused IE7 to fail rendering (tab caption not set).
svn changeset:7798/svn branch:6.0
Diffstat (limited to 'src/com/vaadin')
-rw-r--r-- | src/com/vaadin/demo/featurebrowser/TableExample.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/demo/featurebrowser/TableExample.java b/src/com/vaadin/demo/featurebrowser/TableExample.java index f1dfc1f187..1c9ac6c2d8 100644 --- a/src/com/vaadin/demo/featurebrowser/TableExample.java +++ b/src/com/vaadin/demo/featurebrowser/TableExample.java @@ -61,9 +61,9 @@ public class TableExample extends CustomComponent implements Action.Handler, // main layout
final VerticalLayout main = new VerticalLayout();
- root.addComponent(main);
main.setCaption("Basic Table");
main.setMargin(true);
+ root.addTab(main);
// "source" table with bells & whistlesenabled
source = new Table("All creatures");
|