]> source.dussan.org Git - vaadin-framework.git/commitdiff
#8448 Re-added registration of event listeners which was removed in previous commit
authorArtur Signell <artur@vaadin.com>
Tue, 28 Feb 2012 13:38:52 +0000 (15:38 +0200)
committerArtur Signell <artur@vaadin.com>
Tue, 28 Feb 2012 13:38:52 +0000 (15:38 +0200)
src/com/vaadin/terminal/gwt/client/ui/RootConnector.java

index a484e0eac7f195a5db7071e0be66db3af4657e4c..fd49fb1cb283d1ca7d0fee1dae2ca42dc220d087 100644 (file)
@@ -33,6 +33,11 @@ public class RootConnector extends AbstractComponentContainerConnector {
 
     @Override
     public void updateFromUIDL(final UIDL uidl, ApplicationConnection client) {
+        ConnectorMap paintableMap = ConnectorMap.get(getConnection());
+        // register the listened events by the server-side to the event-handler
+        // of the component
+        paintableMap.registerEventListenersFromUIDL(getId(), uidl);
+
         getWidget().rendering = true;
         getWidget().id = getId();
         boolean firstPaint = getWidget().connection == null;