From e4812a9892dcf1329734257ef8b576b780d0aa0f Mon Sep 17 00:00:00 2001 From: John Alhroos Date: Fri, 18 Jun 2010 12:13:48 +0000 Subject: [PATCH] Fix for #5215 svn changeset:13770/svn branch:6.4 --- src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java b/src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java index 9ff1c4f3bc..d07a3c75b4 100644 --- a/src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java +++ b/src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java @@ -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)) { -- 2.39.5