diff options
author | Jonatan Kronqvist <jonatan.kronqvist@itmill.com> | 2011-09-22 12:47:13 +0000 |
---|---|---|
committer | Jonatan Kronqvist <jonatan.kronqvist@itmill.com> | 2011-09-22 12:47:13 +0000 |
commit | 8746955c7a11dcf6f334009c0299187185e95439 (patch) | |
tree | 256088d17145a98bfbdeebb6ec90698bf04ab92b | |
parent | 7f4a167c7d79c4da0039a3af5bc0c73b84fd4a78 (diff) | |
download | vaadin-framework-8746955c7a11dcf6f334009c0299187185e95439.tar.gz vaadin-framework-8746955c7a11dcf6f334009c0299187185e95439.zip |
A necessary part of the patch in [21231] was left out by mistake (#7358)
svn changeset:21240/svn branch:6.7
-rw-r--r-- | src/com/vaadin/ui/Table.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/ui/Table.java b/src/com/vaadin/ui/Table.java index 7b3df34471..7eba2a7504 100644 --- a/src/com/vaadin/ui/Table.java +++ b/src/com/vaadin/ui/Table.java @@ -3033,7 +3033,7 @@ public class Table extends AbstractSelect implements Action.Container, } } - if ((iscomponent[currentColumn] || iseditable) + if ((iscomponent[currentColumn] || iseditable || cells[CELL_GENERATED_ROW][indexInRowbuffer] != null) && Component.class.isInstance(cells[CELL_FIRSTCOL + currentColumn][indexInRowbuffer])) { final Component c = (Component) cells[CELL_FIRSTCOL |