Minor Updated

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-table-widget@98808 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-07-18 15:55:50 +00:00 committed by Giancarlo Panichi
parent 4f288d6c8f
commit 245794c2ce
1 changed files with 4 additions and 1 deletions

View File

@ -127,6 +127,7 @@ public class ValidationsTasksPanel extends FramedPanel implements
this.eventBus = eventBus; this.eventBus = eventBus;
this.thisPanel = this; this.thisPanel = this;
forceLayoutOnResize = true; forceLayoutOnResize = true;
init();
draw(); draw();
} }
@ -134,7 +135,7 @@ public class ValidationsTasksPanel extends FramedPanel implements
if (tree != null) { if (tree != null) {
remove(tree); remove(tree);
} }
init();
retrieveValidations(); retrieveValidations();
} }
@ -143,6 +144,7 @@ public class ValidationsTasksPanel extends FramedPanel implements
setHeight(HEIGHT); setHeight(HEIGHT);
setHeaderVisible(false); setHeaderVisible(false);
setBodyBorder(false); setBodyBorder(false);
forceLayoutOnResize = true;
} }
protected void createTreeData() { protected void createTreeData() {
@ -532,6 +534,7 @@ public class ValidationsTasksPanel extends FramedPanel implements
public void onSuccess(TRId result) { public void onSuccess(TRId result) {
Log.debug("retrieved " + result); Log.debug("retrieved " + result);
trId = result; trId = result;
init();
draw(); draw();
} }