Minor updated

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-information-widget@86160 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2013-11-26 11:13:01 +00:00
parent 0083753b1b
commit 32f22629ed
2 changed files with 6 additions and 4 deletions

View File

@ -14,7 +14,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.gcube.portlets.user</groupId>
<artifactId>tabular-data-information-widget</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>2.0.0-SNAPSHOT</version>
<name>tabular-data-information-widget</name>
<description>tabular-data-information-widget allows the recovery of the information relating to a tabular resource</description>
@ -110,14 +110,14 @@
<dependency>
<groupId>org.gcube.portlets.user</groupId>
<artifactId>tabular-data-gwt-service</artifactId>
<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
<version>[2.0.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
</dependency>
<!-- tabular-data-metadata-widget -->
<dependency>
<groupId>org.gcube.portlets.user</groupId>
<artifactId>tabular-data-metadata-widget</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
</dependency>
<!-- LOGGING -->

View File

@ -129,7 +129,9 @@ public class TabularResourceProperties extends FramedPanel {
tableFieldSet.remove(layoutTable);
layoutTable.remove(metadataPanel);
}
metadataPanel= new MetadataAccordionPanel("Information", tableData.getTrId(), eventBus);
TRId trId=tableData.getTrId();
metadataPanel= new MetadataAccordionPanel("Information", trId, eventBus);
layoutTable.add(metadataPanel, new VerticalLayoutData(-1, -1));
tableFieldSet.add(layoutTable);
}