]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix for fixing both styling and broken behavior with ListSelect 91/591/2
authorJohn Ahlroos <john@vaadin.com>
Tue, 8 Jan 2013 09:33:47 +0000 (11:33 +0200)
committerJohn Ahlroos <john@vaadin.com>
Tue, 8 Jan 2013 10:36:59 +0000 (12:36 +0200)
with newItemsAllowed enabled. #10537

Change-Id: I82682ffbc2bc1f2801a6826d7e0f78a82990ae9a

client/src/com/vaadin/client/ApplicationConnection.java
client/src/com/vaadin/client/ui/optiongroup/OptionGroupBaseConnector.java
uitest/src/com/vaadin/tests/components/listselect/ListSelectAllowNewItem.html [new file with mode: 0644]
uitest/src/com/vaadin/tests/components/listselect/ListSelectAllowNewItem.java [new file with mode: 0644]

index fa3b945163295c28309fabab4104109c8ea3fcff..4a3215bb21013bdbfd0c606913564c6fcb1bb0de 100644 (file)
@@ -3110,6 +3110,15 @@ public class ApplicationConnection {
      */
     @Deprecated
     public boolean hasEventListeners(Widget widget, String eventIdentifier) {
+        ComponentConnector connector = getConnectorMap().getConnector(widget);
+        if (connector == null) {
+            /*
+             * No connector will exist in cases where Vaadin widgets have been
+             * re-used without implementing server<->client communication.
+             */
+            return false;
+        }
+
         return hasEventListeners(getConnectorMap().getConnector(widget),
                 eventIdentifier);
     }
index 93df05e3471fce9c86824f598e3bd5a2a493419a..86e857ac7f211c7b91e34d68970f2ee18fa18cc9 100644 (file)
@@ -18,6 +18,7 @@ package com.vaadin.client.ui.optiongroup;
 
 import com.vaadin.client.ApplicationConnection;
 import com.vaadin.client.Paintable;
+import com.vaadin.client.StyleConstants;
 import com.vaadin.client.UIDL;
 import com.vaadin.client.ui.AbstractFieldConnector;
 import com.vaadin.client.ui.VNativeButton;
@@ -72,8 +73,14 @@ public abstract class OptionGroupBaseConnector extends AbstractFieldConnector
                 getWidget().newItemButton = new VNativeButton();
                 getWidget().newItemButton.setText("+");
                 getWidget().newItemButton.addClickHandler(getWidget());
+                getWidget().newItemButton
+                        .addStyleName(StyleConstants.UI_WIDGET);
                 getWidget().newItemField = new VTextField();
+                getWidget().newItemField.client = getConnection();
+                getWidget().newItemField.paintableId = getConnectorId();
                 getWidget().newItemField.addKeyPressHandler(getWidget());
+                getWidget().newItemField.addStyleName(StyleConstants.UI_WIDGET);
+
             }
             getWidget().newItemField.setEnabled(getWidget().isEnabled()
                     && !getWidget().isReadonly());
diff --git a/uitest/src/com/vaadin/tests/components/listselect/ListSelectAllowNewItem.html b/uitest/src/com/vaadin/tests/components/listselect/ListSelectAllowNewItem.html
new file mode 100644 (file)
index 0000000..ad5eda1
--- /dev/null
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head profile="http://selenium-ide.openqa.org/profiles/test-case">
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<link rel="selenium.base" href="http://localhost:8888/" />
+<title>New Test</title>
+</head>
+<body>
+<table cellpadding="1" cellspacing="1" border="1">
+<thead>
+<tr><td rowspan="1" colspan="3">New Test</td></tr>
+</thead><tbody>
+<tr>
+    <td>open</td>
+    <td>/run/com.vaadin.tests.components.listselect.ListSelectAllowNewItem?restartApplication</td>
+    <td></td>
+</tr>
+<tr>
+    <td>mouseClick</td>
+    <td>vaadin=runcomvaadintestscomponentslistselectListSelectAllowNewItem::/VVerticalLayout[0]/Slot[1]/VVerticalLayout[0]/Slot[0]/VListSelect[0]/domChild[1]</td>
+    <td>125,7</td>
+</tr>
+<tr>
+    <td>type</td>
+    <td>vaadin=runcomvaadintestscomponentslistselectListSelectAllowNewItem::/VVerticalLayout[0]/Slot[1]/VVerticalLayout[0]/Slot[0]/VListSelect[0]/domChild[1]</td>
+    <td>aaa</td>
+</tr>
+<tr>
+    <td>mouseClick</td>
+    <td>vaadin=runcomvaadintestscomponentslistselectListSelectAllowNewItem::/VVerticalLayout[0]/Slot[1]/VVerticalLayout[0]/Slot[0]/VListSelect[0]/domChild[2]</td>
+    <td>15,8</td>
+</tr>
+<tr>
+    <td>assertText</td>
+    <td>vaadin=runcomvaadintestscomponentslistselectListSelectAllowNewItem::/VVerticalLayout[0]/Slot[1]/VVerticalLayout[0]/Slot[0]/VListSelect[0]/domChild[0]/domChild[3]</td>
+    <td>aaa</td>
+</tr>
+<tr>
+    <td>assertCSSClass</td>
+    <td>vaadin=runcomvaadintestscomponentslistselectListSelectAllowNewItem::/VVerticalLayout[0]/Slot[1]/VVerticalLayout[0]/Slot[0]/VListSelect[0]/domChild[1]</td>
+    <td>v-widget</td>
+</tr>
+<tr>
+    <td>assertCSSClass</td>
+    <td>vaadin=runcomvaadintestscomponentslistselectListSelectAllowNewItem::/VVerticalLayout[0]/Slot[1]/VVerticalLayout[0]/Slot[0]/VListSelect[0]/domChild[2]</td>
+    <td>v-widget</td>
+</tr>
+
+</tbody></table>
+</body>
+</html>
diff --git a/uitest/src/com/vaadin/tests/components/listselect/ListSelectAllowNewItem.java b/uitest/src/com/vaadin/tests/components/listselect/ListSelectAllowNewItem.java
new file mode 100644 (file)
index 0000000..8e74a7a
--- /dev/null
@@ -0,0 +1,29 @@
+package com.vaadin.tests.components.listselect;
+
+import java.util.Arrays;
+
+import com.vaadin.tests.components.TestBase;
+import com.vaadin.ui.ListSelect;
+
+public class ListSelectAllowNewItem extends TestBase {
+
+    @Override
+    protected void setup() {
+        ListSelect select = new ListSelect("Select", Arrays.asList("Option 1",
+                "Option 2"));
+        select.setImmediate(true);
+        select.setNewItemsAllowed(true);
+        addComponent(select);
+    }
+
+    @Override
+    protected String getDescription() {
+        return "ListSelect with allowNewItems turned on";
+    }
+
+    @Override
+    protected Integer getTicketNumber() {
+        return 10537;
+    }
+
+}