ref #9944: TabMan - Enable Excel export operation for DataSet only

https://support.d4science.org/issues/#9944

Added operation



git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-widget-common-event@162130 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2018-01-12 16:00:45 +00:00
parent 48cfb767b9
commit bc4379b0db
5 changed files with 18 additions and 1 deletions

View File

@ -1,4 +1,7 @@
<ReleaseNotes> <ReleaseNotes>
<Changeset component="${groupId}.${artifactId}.1-12-0" date="2018-01-12">
<Change>Added Excel Dataset Export support [ticket #9944]</Change>
</Changeset>
<Changeset component="${groupId}.${artifactId}.1-11-0" date="2017-06-12"> <Changeset component="${groupId}.${artifactId}.1-11-0" date="2017-06-12">
<Change>Support Java 8 compatibility [ticket #8580]</Change> <Change>Support Java 8 compatibility [ticket #8580]</Change>
</Changeset> </Changeset>

View File

@ -14,7 +14,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.gcube.portlets.user</groupId> <groupId>org.gcube.portlets.user</groupId>
<artifactId>tabular-data-widget-common-event</artifactId> <artifactId>tabular-data-widget-common-event</artifactId>
<version>1.11.0-SNAPSHOT</version> <version>1.12.0-SNAPSHOT</version>
<name>tabular-data-widget-common-event</name> <name>tabular-data-widget-common-event</name>
<description>tabular-data-widget-common-event contains events that are common to all widgets in tabular data manager</description> <description>tabular-data-widget-common-event contains events that are common to all widgets in tabular data manager</description>

View File

@ -18,9 +18,11 @@ public enum RibbonType {
IMPORT_SDMX, IMPORT_SDMX,
IMPORT_CSV, IMPORT_CSV,
IMPORT_JSON, IMPORT_JSON,
IMPORT_EXCEL,
EXPORT_SDMX, EXPORT_SDMX,
EXPORT_CSV, EXPORT_CSV,
EXPORT_JSON, EXPORT_JSON,
EXPORT_EXCEL,
SHARE, SHARE,
TIMELINE, TIMELINE,
BACKGROUND_TASKS, BACKGROUND_TASKS,

View File

@ -79,6 +79,14 @@ public enum OperationsId {
SDMXTemplateImport("205"), SDMXTemplateImport("205"),
JSONImport("300"), JSONImport("300"),
JSONExport("301"), JSONExport("301"),
ExcelGenericImport("400"),
ExcelGenericExport("401"),
ExcelCodelistImport("402"),
ExcelCodelistExport("403"),
ExcelDatasetImport("404"),
ExcelDatasetExport("405"),
ExcelTemplateImport("406"),
ExcelTemplateExport("407"),
ValidateCodelist("1000"), ValidateCodelist("1000"),
ValidateDataset("1001"), ValidateDataset("1001"),
ChangeTableType("1002"), ChangeTableType("1002"),

View File

@ -22,6 +22,10 @@ public enum UIOperationsId {
SDMXTemplateExport("SDMX Template Export"), SDMXTemplateExport("SDMX Template Export"),
JSONImport("JSON Import"), JSONImport("JSON Import"),
JSONExport("JSON Export"), JSONExport("JSON Export"),
ExcelImport("Excel Import"),
ExcelExport("Excel Export"),
ExcelTemplateImport("Excel Generic Import"),
ExcelTemplateExport("Excel Generic Export"),
ChangeTableType("Change Table Type"), ChangeTableType("Change Table Type"),
DeleteColumn("Delete Column"), DeleteColumn("Delete Column"),
AddColumn("Add Column"), AddColumn("Add Column"),