Minor update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-mainbox-widget@101183 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-10-29 17:57:12 +00:00 committed by Giancarlo Panichi
parent 80d759c6cc
commit c05161fbe8
1 changed files with 5 additions and 12 deletions

View File

@ -221,6 +221,7 @@ public class MainBox extends TabPanel {
tdxPanel.update(tabularResourceDataView); tdxPanel.update(tabularResourceDataView);
// TabItemConfig tabItemConfig=getConfig(tdxPanel); // TabItemConfig tabItemConfig=getConfig(tdxPanel);
found = true; found = true;
forceLayout();
break; break;
} }
} }
@ -229,8 +230,7 @@ public class MainBox extends TabPanel {
} }
} }
//TODO
forceLayout();
} catch (Throwable e) { } catch (Throwable e) {
Log.error("Error in MainBox: " + e.getLocalizedMessage()); Log.error("Error in MainBox: " + e.getLocalizedMessage());
e.printStackTrace(); e.printStackTrace();
@ -242,6 +242,7 @@ public class MainBox extends TabPanel {
if (tdxPanel.getTabularResourceDataView().getTrId().getId() if (tdxPanel.getTabularResourceDataView().getTrId().getId()
.compareTo(tabularResourceDataView.getTrId().getId()) == 0) { .compareTo(tabularResourceDataView.getTrId().getId()) == 0) {
tdxPanel.update(tabularResourceDataView); tdxPanel.update(tabularResourceDataView);
Log.debug("Set Active Widget: "+tdxPanel.getId());
setActiveWidget(tdxPanel); setActiveWidget(tdxPanel);
return; return;
} }
@ -254,15 +255,7 @@ public class MainBox extends TabPanel {
protected void addContentTDXPanel( protected void addContentTDXPanel(
TabularResourceDataView tabularResourceDataView, TabularResourceDataView tabularResourceDataView,
TabResource tabResource) { TabResource tabResource) {
/*
* TabItemConfig tdxPanelItemConf = new TabItemConfig();
* tdxPanelItemConf.setClosable(true); SafeHtmlBuilder safeHtmlBuilder =
* new SafeHtmlBuilder();
* safeHtmlBuilder.appendHtmlConstant("<span title='")
* .appendEscaped(tabResource.getName()).appendHtmlConstant("'>")
* .appendEscaped(tabResource.getName()).appendHtmlConstant("</span>");
* tdxPanelItemConf.setHTML(safeHtmlBuilder.toSafeHtml());
*/
TabItemConfig tdxPanelItemConf = new TabItemConfig( TabItemConfig tdxPanelItemConf = new TabItemConfig(
tabResource.getName(), true); tabResource.getName(), true);
tdxPanelItemConf.setIcon(MainboxResources.INSTANCE.tabularResource()); tdxPanelItemConf.setIcon(MainboxResources.INSTANCE.tabularResource());
@ -310,7 +303,7 @@ public class MainBox extends TabPanel {
}); });
setActiveWidget(tdxPanel); setActiveWidget(tdxPanel);
//forceLayout(); forceLayout();
} }
protected void addWelcomeTab() { protected void addWelcomeTab() {