aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Englund <marc.englund@itmill.com>2007-12-11 13:40:40 +0000
committerMarc Englund <marc.englund@itmill.com>2007-12-11 13:40:40 +0000
commitfb2a175fbc22c5ab858f75d80ad6f7e7ac1d07fd (patch)
treeed1d2b6406ec13371e81f088b1e3f74b3277bfc4
parent9e64a503ad65868bd0227704f84302cc196bd1f7 (diff)
downloadvaadin-framework-fb2a175fbc22c5ab858f75d80ad6f7e7ac1d07fd.tar.gz
vaadin-framework-fb2a175fbc22c5ab858f75d80ad6f7e7ac1d07fd.zip
Splitpanel removed from example - does not work in IE (usese position:relative)
svn changeset:3215/svn branch:trunk
-rw-r--r--src/com/itmill/toolkit/demo/featurebrowser/LayoutExample.java3
1 files changed, 2 insertions, 1 deletions
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);
+ -*/
}
}