diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2010-08-31 09:20:32 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2010-08-31 09:20:32 +0000 |
commit | 18f91a8497bc20a58b94fb6c0017128c6e33905c (patch) | |
tree | 48eab946d6c81f8c3a1d04de3edda8f96f8ea48d /src | |
parent | dfea04acf1c0d0c3e8175df6dc10a8175a0e503d (diff) | |
download | vaadin-framework-18f91a8497bc20a58b94fb6c0017128c6e33905c.tar.gz vaadin-framework-18f91a8497bc20a58b94fb6c0017128c6e33905c.zip |
Refined javadocs
svn changeset:14665/svn branch:6.4
Diffstat (limited to 'src')
-rw-r--r-- | src/com/vaadin/ui/Table.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/com/vaadin/ui/Table.java b/src/com/vaadin/ui/Table.java index 1f0200b583..770e0416c1 100644 --- a/src/com/vaadin/ui/Table.java +++ b/src/com/vaadin/ui/Table.java @@ -2935,6 +2935,13 @@ public class Table extends AbstractSelect implements Action.Container, * property. * </p> * <p> + * Table will not listen to value change events from properties overridden + * by generated columns. If the content of your generated column depends on + * properties that are not directly visible in the table, attach value + * change listener to update the content on all depended properties. + * Otherwise your UI might not get updated as expected. + * </p> + * <p> * Also note that getVisibleColumns() will return the generated columns, * while getContainerPropertyIds() will not. * </p> |