From 4ff9b453dedc39db658b17991a4c06b70cd961ac Mon Sep 17 00:00:00 2001 From: Jouni Koivuviita Date: Thu, 14 May 2009 11:10:40 +0000 Subject: [PATCH] Fixed a bug which caused IE7 to fail rendering (tab caption not set). svn changeset:7798/svn branch:6.0 --- src/com/vaadin/demo/featurebrowser/TableExample.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.39.5