]> source.dussan.org Git - vaadin-framework.git/commitdiff
[merge from 6.7] #8328 Pass the new, not the old, value to FreeFormStatementDelegate...
authorAutomerge <automerge@vaadin.com>
Mon, 26 Mar 2012 13:21:50 +0000 (13:21 +0000)
committerAutomerge <automerge@vaadin.com>
Mon, 26 Mar 2012 13:21:50 +0000 (13:21 +0000)
svn changeset:23322/svn branch:6.8

src/com/vaadin/data/util/sqlcontainer/ColumnProperty.java

index 9d88072c20cc1fe51efd019d34f5132f42ed4831..85ff60d5d971acb728450e6d8d6a00c347464edd 100644 (file)
@@ -135,8 +135,8 @@ final public class ColumnProperty implements Property {
 
         /* Set the new value and notify container of the change. */
         changedValue = newValue;
-        owner.getContainer().itemChangeNotification(owner);
         modified = true;
+        owner.getContainer().itemChangeNotification(owner);
     }
 
     private boolean isValueAlreadySet(Object newValue) {