Minor update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-mainbox-widget@101204 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-10-30 10:56:14 +00:00 committed by Giancarlo Panichi
parent c05161fbe8
commit 62ade66979
1 changed files with 9 additions and 5 deletions

View File

@ -86,7 +86,7 @@ public class MainBox extends TabPanel {
} else {
}
//forceLayout();
// forceLayout();
}
});
@ -230,7 +230,7 @@ public class MainBox extends TabPanel {
}
}
} catch (Throwable e) {
Log.error("Error in MainBox: " + e.getLocalizedMessage());
e.printStackTrace();
@ -242,7 +242,7 @@ public class MainBox extends TabPanel {
if (tdxPanel.getTabularResourceDataView().getTrId().getId()
.compareTo(tabularResourceDataView.getTrId().getId()) == 0) {
tdxPanel.update(tabularResourceDataView);
Log.debug("Set Active Widget: "+tdxPanel.getId());
Log.debug("Set Active Widget: " + tdxPanel.getId());
setActiveWidget(tdxPanel);
return;
}
@ -255,7 +255,7 @@ public class MainBox extends TabPanel {
protected void addContentTDXPanel(
TabularResourceDataView tabularResourceDataView,
TabResource tabResource) {
TabItemConfig tdxPanelItemConf = new TabItemConfig(
tabResource.getName(), true);
tdxPanelItemConf.setIcon(MainboxResources.INSTANCE.tabularResource());
@ -379,7 +379,11 @@ public class MainBox extends TabPanel {
@Override
public void onSuccess(TabResource result) {
addContentTDXPanel(tabularResourceDataView, result);
if (result != null) {
addContentTDXPanel(tabularResourceDataView, result);
} else {
Log.debug("No tabular resource In Session");
}
}
});