summaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/ui/Table.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/itmill/toolkit/ui/Table.java')
-rw-r--r--src/com/itmill/toolkit/ui/Table.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/com/itmill/toolkit/ui/Table.java b/src/com/itmill/toolkit/ui/Table.java
index 63565f01b0..dc73c913d7 100644
--- a/src/com/itmill/toolkit/ui/Table.java
+++ b/src/com/itmill/toolkit/ui/Table.java
@@ -1425,6 +1425,14 @@ public class Table extends AbstractSelect implements Action.Container,
/* Overriding select behavior ******************************************** */
+ public void setValue(Object newValue) throws ReadOnlyException,
+ ConversionException {
+ // external selection change, need to truncate pageBuffer
+ resetPageBuffer();
+ refreshRenderedCells();
+ super.setValue(newValue);
+ }
+
/**
* Sets the Container that serves as the data source of the viewer.
*
@@ -2615,4 +2623,5 @@ public class Table extends AbstractSelect implements Action.Container,
+ getContainerDataSource().size() + " ,value:"
+ super.toString();
}
+
} \ No newline at end of file