From: John Alhroos Date: Tue, 29 Jun 2010 12:16:04 +0000 (+0000) Subject: Fix for #5006 X-Git-Tag: 6.7.0.beta1~1493 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=974253f087d79a151046a88aa205d2a044d95814;p=vaadin-framework.git Fix for #5006 svn changeset:13962/svn branch:6.4 --- diff --git a/src/com/vaadin/ui/Table.java b/src/com/vaadin/ui/Table.java index fb9962c8a7..031935cc70 100644 --- a/src/com/vaadin/ui/Table.java +++ b/src/com/vaadin/ui/Table.java @@ -1455,6 +1455,13 @@ public class Table extends AbstractSelect implements Action.Container, pageBuffer = cells; unregisterPropertiesAndComponents(oldListenedProperties, oldVisibleComponents); + + /* + * We need to repaint so possible header or footer changes are + * sent to the server + */ + requestRepaint(); + return; }