Updated pom
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-portlet@82786 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
0e0c2fab61
commit
225d77b3e2
|
@ -4,15 +4,6 @@
|
|||
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
|
||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
|
||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
|
||||
<dependent-module archiveName="tabular-data-widget-td-source-1.0.0-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/tabular-data-widget-td-source/tabular-data-widget-td-source">
|
||||
<dependency-type>uses</dependency-type>
|
||||
</dependent-module>
|
||||
<dependent-module archiveName="tabular-data-widget-2.0.0-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/tabular-data-widget/tabular-data-widget">
|
||||
<dependency-type>uses</dependency-type>
|
||||
</dependent-module>
|
||||
<dependent-module archiveName="csv-import-wizard-gxt3-1.1.0-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/csv-import-wizard-gxt3/csv-import-wizard-gxt3">
|
||||
<dependency-type>uses</dependency-type>
|
||||
</dependent-module>
|
||||
<dependent-module archiveName="SDMXImportWizardTD-1.0.0-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/SDMXImportWizardTD/SDMXImportWizardTD">
|
||||
<dependency-type>uses</dependency-type>
|
||||
</dependent-module>
|
||||
|
|
7
pom.xml
7
pom.xml
|
@ -15,6 +15,7 @@
|
|||
<artifactId>tabular-data-portlet</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
<name>Tabular data portlet</name>
|
||||
<packaging>war</packaging>
|
||||
|
||||
<properties>
|
||||
<distroDirectory>${project.basedir}/distro</distroDirectory>
|
||||
|
@ -77,10 +78,12 @@
|
|||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- WORKSPACE -->
|
||||
<!-- WSLT dependencies -->
|
||||
<dependency>
|
||||
<groupId>org.gcube.portlets.user</groupId>
|
||||
<artifactId>workspace-light-tree</artifactId>
|
||||
<version>[2.10.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
@ -276,5 +279,5 @@
|
|||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<packaging>war</packaging>
|
||||
|
||||
</project>
|
||||
|
|
|
@ -262,7 +262,7 @@ public class TabularDataController {
|
|||
|
||||
|
||||
trProperties = new TabularResourceProperties(
|
||||
"TRProperties", eventBus, trId);
|
||||
"TRProperties", eventBus);
|
||||
trProperties.setHeaderVisible(false);
|
||||
functionalityTab.add(trProperties, propertiesItemConf);
|
||||
functionalityTab
|
||||
|
|
|
@ -116,6 +116,7 @@ public class TabularDataPortlet implements EntryPoint {
|
|||
|
||||
mainPanelLayout.setNorthWidget(toolBarPanel, toolBarData);
|
||||
|
||||
|
||||
//Grid Panel
|
||||
final TabularDataGridPanel gridPanel = tabularData.getGridPanel();
|
||||
gridPanel.setHeaderVisible(false);
|
||||
|
@ -126,7 +127,7 @@ public class TabularDataPortlet implements EntryPoint {
|
|||
|
||||
//Functionality Panel
|
||||
functionalityPanel= new ContentPanel();
|
||||
functionalityPanel.setWidth(250);
|
||||
functionalityPanel.setWidth(310);
|
||||
functionalityPanel.setHeaderVisible(false);
|
||||
functionalityPanel.setResize(true);
|
||||
|
||||
|
@ -137,7 +138,7 @@ public class TabularDataPortlet implements EntryPoint {
|
|||
|
||||
functionalityPanel.add(functionalityTab);
|
||||
|
||||
eastData = new BorderLayoutData(250);
|
||||
eastData = new BorderLayoutData(310);
|
||||
eastData.setCollapsible(true);
|
||||
eastData.setSplit(false);
|
||||
eastData.setFloatable(false);
|
||||
|
@ -150,6 +151,7 @@ public class TabularDataPortlet implements EntryPoint {
|
|||
functionalityPanel.collapse();
|
||||
functionalityPanel.disable();
|
||||
|
||||
mainPanelLayout.onResize();
|
||||
|
||||
controller.setFunctionalityTab(functionalityTab);
|
||||
controller.setFunctionalityPanel(functionalityPanel);
|
||||
|
|
Loading…
Reference in New Issue