From f7ce7c238cb0618b990a755a09fd0ba69fb4af08 Mon Sep 17 00:00:00 2001 From: Giancarlo Panichi Date: Thu, 24 Oct 2013 16:40:24 +0000 Subject: [PATCH] Proper recovery of informations git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-information-widget@84122 82a268e6-3cf1-43bd-a215-b396298e98cf --- .../informationwidget/client/TabularResourceProperties.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/gcube/portlets/user/td/informationwidget/client/TabularResourceProperties.java b/src/main/java/org/gcube/portlets/user/td/informationwidget/client/TabularResourceProperties.java index c2f2aa5..8101107 100644 --- a/src/main/java/org/gcube/portlets/user/td/informationwidget/client/TabularResourceProperties.java +++ b/src/main/java/org/gcube/portlets/user/td/informationwidget/client/TabularResourceProperties.java @@ -7,6 +7,7 @@ import org.gcube.portlets.user.td.gwtservice.shared.TabResource; +import com.allen_sauer.gwt.log.client.Log; import com.google.gwt.user.client.rpc.AsyncCallback; import com.google.web.bindery.event.shared.EventBus; import com.sencha.gxt.widget.core.client.ContentPanel; @@ -36,11 +37,12 @@ public class TabularResourceProperties extends ContentPanel { this.eventBus = eventBus; TDGWTServiceAsync.INSTANCE - .getTabResource(new AsyncCallback() { + .getTabResourceInformation(new AsyncCallback() { @Override public void onSuccess(TabResource result) { addTabularResource(result); + Log.info("Retrived TR:"+ result.getId()); } @Override