summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2011-09-15 13:51:21 +0000
committerLeif Åstrand <leif@vaadin.com>2011-09-15 13:51:21 +0000
commit3bb05353f4d2e4affb622f311d2a74cbe37d7bf1 (patch)
treefb471324c6764136698860cd126fc7c98a05d673 /src
parent776889c300e9eb373e1064b8ff190ca8b04b3c0f (diff)
downloadvaadin-framework-3bb05353f4d2e4affb622f311d2a74cbe37d7bf1.tar.gz
vaadin-framework-3bb05353f4d2e4affb622f311d2a74cbe37d7bf1.zip
Don't send partial row updates for a full repaint (#7605)
svn changeset:21064/svn branch:6.7
Diffstat (limited to 'src')
-rw-r--r--src/com/vaadin/ui/Table.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/ui/Table.java b/src/com/vaadin/ui/Table.java
index f752519fd1..80c6b5820f 100644
--- a/src/com/vaadin/ui/Table.java
+++ b/src/com/vaadin/ui/Table.java
@@ -2358,7 +2358,7 @@ public class Table extends AbstractSelect implements Action.Container,
paintVisibleColumnOrder(target);
// Rows
- if (isPartialRowUpdate()) {
+ if (isPartialRowUpdate() && !target.isFullRepaint()) {
paintPartialRowUpdate(target, actionSet);
} else if (target.isFullRepaint() || isRowCacheInvalidated()) {
paintRows(target, cells, actionSet);