Browse Source

fixes #1355

svn changeset:3664/svn branch:trunk
tags/6.7.0.beta1
Matti Tahvonen 16 years ago
parent
commit
a68a0d1ff6
1 changed files with 6 additions and 1 deletions
  1. 6
    1
      src/com/itmill/toolkit/ui/Table.java

+ 6
- 1
src/com/itmill/toolkit/ui/Table.java View File

@@ -1918,10 +1918,15 @@ public class Table extends AbstractSelect implements Action.Container,
/**
* Notifies this listener that the Property's value has changed.
*
* Also listens content changes (Contained Properties value changes) to
* refresh content area.
*
* @see com.itmill.toolkit.data.Property.ValueChangeListener#valueChange(Property.ValueChangeEvent)
*/
public void valueChange(Property.ValueChangeEvent event) {
super.valueChange(event);
if (event.getProperty() == this) {
super.valueChange(event);
}
requestRepaint();
}


Loading…
Cancel
Save