From 5b7f751cf1404048ef7940634825c06bd76bdf0f Mon Sep 17 00:00:00 2001 From: Oscar Gonzalez Fernandez Date: Wed, 14 May 2014 13:24:15 +0200 Subject: [PATCH] Bindings must be reloaded Otherwise it wouldn't update the original and total labels in the extended view. The setup method is called when the rows are retrieved again. --- .../java/org/libreplan/web/planner/allocation/FormBinder.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libreplan-webapp/src/main/java/org/libreplan/web/planner/allocation/FormBinder.java b/libreplan-webapp/src/main/java/org/libreplan/web/planner/allocation/FormBinder.java index 3c2cfb92a..177db8c36 100644 --- a/libreplan-webapp/src/main/java/org/libreplan/web/planner/allocation/FormBinder.java +++ b/libreplan-webapp/src/main/java/org/libreplan/web/planner/allocation/FormBinder.java @@ -526,7 +526,7 @@ public class FormBinder { } /** - * + * * @return true if and only if operation completed and must * exit the edition form */ @@ -557,7 +557,7 @@ public class FormBinder { workableDaysAndDatesBinder.afterApplicationReloadValues(); - setupRows(); + Util.reloadBindings(allocationsGrid); } @SuppressWarnings("unchecked")