]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix for #5215
authorJohn Alhroos <john.ahlroos@itmill.com>
Fri, 18 Jun 2010 12:13:48 +0000 (12:13 +0000)
committerJohn Alhroos <john.ahlroos@itmill.com>
Fri, 18 Jun 2010 12:13:48 +0000 (12:13 +0000)
svn changeset:13770/svn branch:6.4

src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java

index 9ff1c4f3bc13c77c13387dc83a2c62b68dbcdd88..d07a3c75b4c0983054e3a4e23b314f230ecf9b85 100644 (file)
@@ -610,7 +610,10 @@ public class VScrollTable extends FlowPanel implements Table, ScrollHandler,
          * this.setHeight() which will calculate a new body height depending on
          * the space available.
          */
-        showColFooters = uidl.getBooleanAttribute("colfooters");
+        if (uidl.hasAttribute("colfooters")) {
+            showColFooters = uidl.getBooleanAttribute("colfooters");
+        }
+
         tFoot.setVisible(showColFooters);
 
         if (client.updateComponent(this, uidl, true)) {