refs 5870: TDM - adding new functionalities to portlets

Task-Url: https://support.d4science.org/issues/5870

Updated to support SDMX Dataset export

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-portlet@142088 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2017-02-02 13:55:26 +00:00
parent a923c96a25
commit df1e081259
1 changed files with 5 additions and 5 deletions

View File

@ -85,7 +85,6 @@ import org.gcube.portlets.user.td.widgetcommonevent.shared.geospatial.Geospatial
import org.gcube.portlets.user.td.widgetcommonevent.shared.grid.model.RowRaw; import org.gcube.portlets.user.td.widgetcommonevent.shared.grid.model.RowRaw;
import org.gcube.portlets.user.td.wizardwidget.client.WizardListener; import org.gcube.portlets.user.td.wizardwidget.client.WizardListener;
import org.gcube.portlets.user.tdtemplate.client.TdTemplateController; import org.gcube.portlets.user.tdtemplate.client.TdTemplateController;
import org.gcube.portlets.widgets.sessionchecker.client.CheckSession;
import com.allen_sauer.gwt.log.client.Log; import com.allen_sauer.gwt.log.client.Log;
import com.google.gwt.core.client.GWT; import com.google.gwt.core.client.GWT;
@ -151,7 +150,7 @@ public class TabularDataController {
eventBus = new SimpleEventBus(); eventBus = new SimpleEventBus();
initMessages(); initMessages();
callHello(); callHello();
checkSession(); //checkSession();
pendingTasksRetrieve(); pendingTasksRetrieve();
bindToEvents(); bindToEvents();
} }
@ -161,13 +160,14 @@ public class TabularDataController {
msgsCommon = GWT.create(CommonMessages.class); msgsCommon = GWT.create(CommonMessages.class);
} }
private void checkSession() { /*private void checkSession() {
// if you do not need to something when the session expire // if you do not need to something when the session expire
CheckSession.getInstance().startPolling(); CheckSession.getInstance().startPolling();
} }*/
private void sessionExpiredShow() { private void sessionExpiredShow() {
CheckSession.showLogoutDialog(); Log.error("Session expired");
//CheckSession.showLogoutDialog();
} }
/** /**