From: Marc Englund Date: Tue, 11 Dec 2007 13:40:40 +0000 (+0000) Subject: Splitpanel removed from example - does not work in IE (usese position:relative) X-Git-Tag: 6.7.0.beta1~5247 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=fb2a175fbc22c5ab858f75d80ad6f7e7ac1d07fd;p=vaadin-framework.git Splitpanel removed from example - does not work in IE (usese position:relative) svn changeset:3215/svn branch:trunk --- diff --git a/src/com/itmill/toolkit/demo/featurebrowser/LayoutExample.java b/src/com/itmill/toolkit/demo/featurebrowser/LayoutExample.java index d33710b051..c411233d96 100644 --- a/src/com/itmill/toolkit/demo/featurebrowser/LayoutExample.java +++ b/src/com/itmill/toolkit/demo/featurebrowser/LayoutExample.java @@ -9,7 +9,6 @@ import com.itmill.toolkit.ui.GridLayout; import com.itmill.toolkit.ui.Label; import com.itmill.toolkit.ui.OrderedLayout; import com.itmill.toolkit.ui.Panel; -import com.itmill.toolkit.ui.SplitPanel; import com.itmill.toolkit.ui.TabSheet; /** @@ -67,6 +66,7 @@ public class LayoutExample extends CustomComponent { gl.addComponent(new Label("Component 3.3"), 2, 2); ts.addTab(gl, "GridLayout", null); + /*- TODO spitpanel removed for now - do we need it here? ts = new TabSheet(); ts.setHeight(150); g.addComponent(ts, 0, 2, 1, 2); @@ -80,6 +80,7 @@ public class LayoutExample extends CustomComponent { sp.addComponent(new Label("Component 1")); sp.addComponent(new Label("Component 2")); ts.addTab(sp, "Horizontal SplitPanel", null); + -*/ } }