summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-08-02 12:11:08 +0000
committerLeif Åstrand <leif@vaadin.com>2012-08-02 12:11:08 +0000
commit6685816c2a548bad3d827d3064a70f35e7b69361 (patch)
tree585521325eacebef2fc930e2cbb7938befffbd1e /src/com/vaadin/ui
parent85c03155dc02e61dd10a9c861b064204bdeaca9f (diff)
downloadvaadin-framework-6685816c2a548bad3d827d3064a70f35e7b69361.tar.gz
vaadin-framework-6685816c2a548bad3d827d3064a70f35e7b69361.zip
Clear selectionRangeStart if the key map has been cleared (#8584, #8736)
svn changeset:24045/svn branch:6.8
Diffstat (limited to 'src/com/vaadin/ui')
-rw-r--r--src/com/vaadin/ui/Table.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/com/vaadin/ui/Table.java b/src/com/vaadin/ui/Table.java
index e96636dd70..e56f6003ab 100644
--- a/src/com/vaadin/ui/Table.java
+++ b/src/com/vaadin/ui/Table.java
@@ -413,6 +413,13 @@ public class Table extends AbstractSelect implements Action.Container,
private boolean painted = false;
+ /**
+ * Set to true if the client-side should be informed that the key mapper has
+ * been reset so it can avoid sending back references to keys that are no
+ * longer present.
+ */
+ private boolean keyMapperReset;
+
/* Table constructors */
/**
@@ -2772,6 +2779,11 @@ public class Table extends AbstractSelect implements Action.Container,
paintVisibleColumns(target);
+ if (keyMapperReset) {
+ keyMapperReset = false;
+ target.addAttribute(VScrollTable.ATTRIBUTE_KEY_MAPPER_RESET, true);
+ }
+
if (dropHandler != null) {
dropHandler.getAcceptCriterion().paint(target);
}
@@ -3923,6 +3935,10 @@ public class Table extends AbstractSelect implements Action.Container,
public void containerItemSetChange(Container.ItemSetChangeEvent event) {
super.containerItemSetChange(event);
+ // super method clears the key map, must inform client about this to
+ // avoid getting invalid keys back (#8584)
+ keyMapperReset = true;
+
// ensure that page still has first item in page, ignore buffer refresh
// (forced in this method)
setCurrentPageFirstItemIndex(getCurrentPageFirstItemIndex(), false);