]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed #1077 FeatureBrowser Select does not work because lazyloading field no longer...
authorJani Laakso <jani.laakso@itmill.com>
Fri, 2 Nov 2007 13:52:44 +0000 (13:52 +0000)
committerJani Laakso <jani.laakso@itmill.com>
Fri, 2 Nov 2007 13:52:44 +0000 (13:52 +0000)
svn changeset:2691/svn branch:trunk

src/com/itmill/toolkit/tests/featurebrowser/PropertyPanel.java

index a46653a0446993ae719362d1bac4ee8b0e0e2563..ad8382a632c64dc19cc3ae7fff61117369f87287 100644 (file)
@@ -301,7 +301,7 @@ public class PropertyPanel extends Panel implements Button.ClickListener,
                                                "Select component (but not Tree or Table) can allow the user to directly "
                                                                + "add new items to set of options. The new items are constrained to be "
                                                                + "strings and thus feature only applies to simple lists.");
-               Button ll = (Button) set.getField("lazyLoading");
+               /*Button ll = (Button) set.getField("lazyLoading");
                ll
                                .setDescription("In Ajax rendering mode select supports lazy loading and filtering of options.");
                ll.addListener((ValueChangeListener) this);
@@ -309,7 +309,7 @@ public class PropertyPanel extends Panel implements Button.ClickListener,
                if (((Boolean) ll.getValue()).booleanValue()) {
                        set.getField("multiSelect").setVisible(false);
                        set.getField("newItemsAllowed").setVisible(false);
-               }
+               }*/
                if (objectToConfigure instanceof Tree
                                || objectToConfigure instanceof Table) {
                        set.removeItemProperty("newItemsAllowed");