diff options
author | Marc Englund <marc.englund@itmill.com> | 2007-12-28 07:48:08 +0000 |
---|---|---|
committer | Marc Englund <marc.englund@itmill.com> | 2007-12-28 07:48:08 +0000 |
commit | f762a82549f2fd7fdab08444f4fc93f6ddfea564 (patch) | |
tree | e924dec00ba5cc3e41df20f6998b695dc9837f00 /src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java | |
parent | 8a442f087ab75f285cb84921e71d15d3c7a25bbd (diff) | |
download | vaadin-framework-f762a82549f2fd7fdab08444f4fc93f6ddfea564.tar.gz vaadin-framework-f762a82549f2fd7fdab08444f4fc93f6ddfea564.zip |
Made it easier to find the "editable grid" (table in editmode)
svn changeset:3321/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java')
-rw-r--r-- | src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java b/src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java index 744d415702..81cd281ae2 100644 --- a/src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java +++ b/src/com/itmill/toolkit/demo/featurebrowser/FeatureBrowser.java @@ -79,8 +79,10 @@ public class FeatureBrowser extends com.itmill.toolkit.Application implements { "Wrangling data", "ComboBox", "ComboBox - the swiss army select", ComboBoxExample.class }, // Wrangling data: Table - { "Wrangling data", "Table", - "A dynamic Table with bells, whistles and actions", + { + "Wrangling data", + "Table (\"grid\")", + "Table with bells, whistles, editmode and actions (contextmenu)", TableExample.class }, // Wrangling data: Tree { "Wrangling data", "Tree", "A hierarchy of things", @@ -198,7 +200,7 @@ public class FeatureBrowser extends com.itmill.toolkit.Application implements if (Layout.class.isAssignableFrom(component.getClass())) { w.setLayout((Layout) component); } else { - //w.getLayout().getSize().setSizeFull(); + // w.getLayout().getSize().setSizeFull(); w.addComponent(component); } getMainWindow().addWindow(w); @@ -225,7 +227,7 @@ public class FeatureBrowser extends com.itmill.toolkit.Application implements if (Layout.class.isAssignableFrom(component.getClass())) { w.setLayout((Layout) component); } else { - //w.getLayout().getSize().setSizeFull(); + // w.getLayout().getSize().setSizeFull(); w.addComponent(component); } addWindow(w); |