refs 6548: TDM - Migrate TabMan to new PortalContext
Task-Url: https://support.d4science.org/issues/6548 Updated to new PortalContext git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-portlet@142615 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
df1e081259
commit
a072a23b8d
|
@ -54,7 +54,6 @@ public class FileToolBar {
|
|||
private TextButton importCSVButton;
|
||||
// private TextButton importJSONButton;
|
||||
private TextButton importSDMXButton;
|
||||
|
||||
private TextButton exportSDMXButton;
|
||||
private TextButton exportCSVButton;
|
||||
private TextButton exportJSONButton;
|
||||
|
@ -601,12 +600,14 @@ public class FileToolBar {
|
|||
// importJSONButton.disable();
|
||||
importSDMXButton.enable();
|
||||
TRId trId = event.getTrId();
|
||||
|
||||
//|| trId
|
||||
//.getTableTypeName().compareTo(
|
||||
// TableType.DATASET.getTableTypeLabel()) == 0
|
||||
if (trId != null
|
||||
&& trId.getTableType() != null
|
||||
&& (trId.getTableType().compareTo(
|
||||
TableType.CODELIST.getTableTypeLabel()) == 0 || trId
|
||||
.getTableType().compareTo(
|
||||
TableType.DATASET.getTableTypeLabel()) == 0)) {
|
||||
&& trId.getTableTypeName() != null
|
||||
&& (trId.getTableTypeName().compareTo(
|
||||
TableType.CODELIST.getTableTypeLabel()) == 0)) {
|
||||
exportSDMXButton.enable();
|
||||
} else {
|
||||
exportSDMXButton.disable();
|
||||
|
|
Loading…
Reference in New Issue