Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-toolbox-widget@90709 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-01-29 18:21:23 +00:00 committed by Giancarlo Panichi
parent 5c794373d4
commit 632986ab17
3 changed files with 10 additions and 6 deletions

View File

@ -36,6 +36,7 @@ public class ToolBox extends TabPanel {
this.toolBoxPanel = toolBoxPanel;
setId(name);
setBodyBorder(false);
setBorders(false);
setAnimScroll(true);
setTabScroll(true);
setCloseContextMenu(true);
@ -93,7 +94,7 @@ public class ToolBox extends TabPanel {
}
protected void addHelpPanel() {
TabItemConfig propertiesItemConf = new TabItemConfig("Help", true);
TabItemConfig propertiesItemConf = new TabItemConfig("Help", false);
helpPanel = new HelpPanel("Help", eventBus);
helpPanel.setHeaderVisible(false);

View File

@ -27,6 +27,7 @@ public class ToolBoxPanel extends ContentPanel {
setHeaderVisible(false);
setResize(true);
setBodyBorder(false);
setBorders(false);
toolBox = new ToolBox("ToolBox",eventBus,this);
add(toolBox);
startPanel();

View File

@ -41,6 +41,7 @@ public class HelpPanel extends FramedPanel {
this.eventBus = eventBus;
forceLayoutOnResize = true;
setBodyBorder(false);
setBorders(false);
vl = new VerticalLayoutContainer();
initInformation();
@ -50,20 +51,21 @@ public class HelpPanel extends FramedPanel {
public void addContents() {
HTML title=new HTML("<H2>Tabular Data Manager Help<H2>");
vl.add(title,new VerticalLayoutData(-1, -1, new Margins(1,1,6,1)));
vl.add(title,new VerticalLayoutData(-1, -1, new Margins(1,1,10,1)));
contents = new FieldSet();
contents.setHeadingText("Contents");
contents.setCollapsible(true);
contents.setResize(true);
layoutCaptions = new VerticalLayoutContainer();
contents.add(layoutCaptions);
HTML info=new HTML("<p>Tabular Data Manager offers facilities supporting the management of the entire life-cycle" +
"(creation, curation, manipulation and publication) of Tabular Resources such as datasets, codelist or generic table." +
HTML info=new HTML("<p><em><b>Tabular Data Manager<b></em> offers facilities supporting the management of the entire life-cycle" +
"(creation, curation, manipulation and publication) of <em>Tabular Resources</em> such as datasets, codelist or generic table." +
" i.e. tabular data representing observations of a given event or phenomenon at different time intervals." +
" Tabular Resource are used in many domains ranging from statistics to signal processing and econometrics." +
" Tabular Data Manager offers a rich set of facilities ranging from those supporting the assessment" +
" <em>Tabular Resource</em> are used in many domains ranging from statistics to signal processing and econometrics." +
" <em><b>Tabular Data Manager<b></em> offers a rich set of facilities ranging from those supporting the assessment" +
" of data correctness to those supporting the verification of the compliance of data with given code lists," +
" the aggregation and filtering of data.</p>");
layoutCaptions.add(info,