]> source.dussan.org Git - vaadin-framework.git/commitdiff
workaround for IScrollTable bug to server side paint method
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Mon, 11 Feb 2008 14:42:01 +0000 (14:42 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Mon, 11 Feb 2008 14:42:01 +0000 (14:42 +0000)
svn changeset:3768/svn branch:trunk

src/com/itmill/toolkit/ui/Table.java

index 9ded6ce04105ba53b685d9ae0c94797f38538794..946762eb86c3c8eb9aac3ecb3def575377d2a6e7 100644 (file)
@@ -1787,6 +1787,12 @@ public class Table extends AbstractSelect implements Action.Container,
                     if (c == null) {
                         target.addText("");
                     } else {
+                        /*
+                         * FIXME ensuring that table never gets "cached" child
+                         * paints by calling requestRepaint for child component
+                         * IScrollTable currently can's survive those.
+                         */
+                        c.requestRepaint();
                         c.paint(target);
                     }
                 } else {