diff options
author | John Alhroos <john.ahlroos@itmill.com> | 2010-06-29 12:16:04 +0000 |
---|---|---|
committer | John Alhroos <john.ahlroos@itmill.com> | 2010-06-29 12:16:04 +0000 |
commit | 974253f087d79a151046a88aa205d2a044d95814 (patch) | |
tree | e15d42c831bb32b0c40d653abc5c1d2a28360dde /src/com/vaadin/ui | |
parent | 2056d9d9552497a22d3c648ada50b915c32be71d (diff) | |
download | vaadin-framework-974253f087d79a151046a88aa205d2a044d95814.tar.gz vaadin-framework-974253f087d79a151046a88aa205d2a044d95814.zip |
Fix for #5006
svn changeset:13962/svn branch:6.4
Diffstat (limited to 'src/com/vaadin/ui')
-rw-r--r-- | src/com/vaadin/ui/Table.java | 7 |
1 files changed, 7 insertions, 0 deletions
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; } |