Removed Validations

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-information-widget@115467 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2015-06-22 15:23:56 +00:00
parent 967b4d2278
commit 208b7b089f
3 changed files with 15 additions and 12 deletions

View File

@ -129,12 +129,13 @@
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<!-- tabular-data-metadata-widget --> <!-- tabular-data-metadata-widget
<dependency> <dependency>
<groupId>org.gcube.portlets.user</groupId> <groupId>org.gcube.portlets.user</groupId>
<artifactId>tabular-data-metadata-widget</artifactId> <artifactId>tabular-data-metadata-widget</artifactId>
<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version> <version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
</dependency> </dependency>
-->
<!-- LOGGING --> <!-- LOGGING -->
<dependency> <dependency>

View File

@ -19,11 +19,9 @@ import org.gcube.portlets.user.td.informationwidget.client.util.UtilsGXT3;
import org.gcube.portlets.user.td.widgetcommonevent.client.event.DataViewRequestEvent; import org.gcube.portlets.user.td.widgetcommonevent.client.event.DataViewRequestEvent;
import org.gcube.portlets.user.td.widgetcommonevent.client.event.RibbonEvent; import org.gcube.portlets.user.td.widgetcommonevent.client.event.RibbonEvent;
import org.gcube.portlets.user.td.widgetcommonevent.client.event.SessionExpiredEvent; import org.gcube.portlets.user.td.widgetcommonevent.client.event.SessionExpiredEvent;
import org.gcube.portlets.user.td.widgetcommonevent.client.event.WidgetRequestEvent;
import org.gcube.portlets.user.td.widgetcommonevent.client.type.DataViewRequestType; import org.gcube.portlets.user.td.widgetcommonevent.client.type.DataViewRequestType;
import org.gcube.portlets.user.td.widgetcommonevent.client.type.RibbonType; import org.gcube.portlets.user.td.widgetcommonevent.client.type.RibbonType;
import org.gcube.portlets.user.td.widgetcommonevent.client.type.SessionExpiredType; import org.gcube.portlets.user.td.widgetcommonevent.client.type.SessionExpiredType;
import org.gcube.portlets.user.td.widgetcommonevent.client.type.WidgetRequestType;
import org.gcube.portlets.user.td.widgetcommonevent.shared.TRId; import org.gcube.portlets.user.td.widgetcommonevent.shared.TRId;
import org.gcube.portlets.user.td.widgetcommonevent.shared.dataview.TabularResourceDataView; import org.gcube.portlets.user.td.widgetcommonevent.shared.dataview.TabularResourceDataView;
@ -96,7 +94,7 @@ public class TabularResourceProperties extends FramedPanel {
private VerticalLayoutContainer layoutTabularResource; private VerticalLayoutContainer layoutTabularResource;
private TextButton saveButton; private TextButton saveButton;
private TextButton validationsButton; //private TextButton validationsButton;
//private TextButton resourcesButton; //private TextButton resourcesButton;
private ArrayList<LicenceData> licencesList; private ArrayList<LicenceData> licencesList;
@ -275,7 +273,7 @@ public class TabularResourceProperties extends FramedPanel {
saveButton.addSelectHandler(saveHandler); saveButton.addSelectHandler(saveHandler);
// Validation Button // Validation Button
validationsButton = new TextButton(msgs.validationsButton()); /*validationsButton = new TextButton(msgs.validationsButton());
validationsButton.setIcon(ResourceBundle.INSTANCE.tableValidation()); validationsButton.setIcon(ResourceBundle.INSTANCE.tableValidation());
validationsButton.setIconAlign(IconAlign.RIGHT); validationsButton.setIconAlign(IconAlign.RIGHT);
validationsButton.setToolTip(msgs.validationsButtonToolTip()); validationsButton.setToolTip(msgs.validationsButtonToolTip());
@ -288,7 +286,9 @@ public class TabularResourceProperties extends FramedPanel {
} }
}; };
validationsButton.addSelectHandler(validationsHandler); validationsButton.addSelectHandler(validationsHandler);
*/
// Resources Button // Resources Button
/*resourcesButton = new TextButton(msgs.resourcesButton()); /*resourcesButton = new TextButton(msgs.resourcesButton());
resourcesButton.setIcon(ResourceBundle.INSTANCE.resources()); resourcesButton.setIcon(ResourceBundle.INSTANCE.resources());
@ -306,9 +306,9 @@ public class TabularResourceProperties extends FramedPanel {
// //
HBoxLayoutContainer hBox = new HBoxLayoutContainer(); HBoxLayoutContainer hBox = new HBoxLayoutContainer();
hBox.setPack(BoxLayoutPack.CENTER); hBox.setPack(BoxLayoutPack.START);
hBox.add(saveButton, new BoxLayoutData(new Margins(2, 5, 2, 5))); hBox.add(saveButton, new BoxLayoutData(new Margins(2, 5, 2, 5)));
hBox.add(validationsButton, new BoxLayoutData(new Margins(2, 5, 2, 5))); //hBox.add(validationsButton, new BoxLayoutData(new Margins(2, 5, 2, 5)));
//hBox.add(resourcesButton, new BoxLayoutData(new Margins(2, 5, 2, 5))); //hBox.add(resourcesButton, new BoxLayoutData(new Margins(2, 5, 2, 5)));
layoutTabularResource.add(hBox, new VerticalLayoutData(1, -1, layoutTabularResource.add(hBox, new VerticalLayoutData(1, -1,
@ -465,7 +465,8 @@ public class TabularResourceProperties extends FramedPanel {
vl.add(tableFieldSet); vl.add(tableFieldSet);
}*/ }*/
/*
protected void openValidations() { protected void openValidations() {
Log.debug("Request Validations Tab"); Log.debug("Request Validations Tab");
if (trId != null) { if (trId != null) {
@ -477,6 +478,7 @@ public class TabularResourceProperties extends FramedPanel {
Log.error("TRId is null"); Log.error("TRId is null");
} }
} }
*/
/* /*
protected void openResources() { protected void openResources() {
@ -495,6 +497,7 @@ public class TabularResourceProperties extends FramedPanel {
protected void updateTable(TableData tableData) { protected void updateTable(TableData tableData) {
trId = tableData.getTrId(); trId = tableData.getTrId();
Log.debug("New :"+trId);
forceLayout(); forceLayout();
} }
@ -505,7 +508,7 @@ public class TabularResourceProperties extends FramedPanel {
public void onSuccess(TabResource result) { public void onSuccess(TabResource result) {
Log.info("Retrived TR: " + result.getTrId()); Log.info("Retrived TR: " + result.getTrId());
updateTabularResource(result); updateTabularResource(result);
getLastTable(tabResource.getTrId()); getLastTable(result.getTrId());
} }
public void onFailure(Throwable caught) { public void onFailure(Throwable caught) {

View File

@ -13,10 +13,9 @@
<inherits name='com.sencha.gxt.ui.GXT' /> <inherits name='com.sencha.gxt.ui.GXT' />
<inherits name="com.allen_sauer.gwt.log.gwt-log-TRACE" /> <inherits name="com.allen_sauer.gwt.log.gwt-log-TRACE" />
<inherits name='org.gcube.portlets.user.td.gwtservice.TDGWTService' /> <inherits name='org.gcube.portlets.user.td.gwtservice.TDGWTService' />
<inherits name='org.gcube.portlets.user.td.metadatawidget.Metadata' />
<!-- Specify the app entry point class. --> <!-- Specify the app entry point class. -->
<!-- <entry-point class='org.gcube.portlets.user.td.information.client.InformationEntry' /> --> <!-- <entry-point class='org.gcube.portlets.user.td.information.client.InformationEntry' /> -->
<!-- <!--
<set-configuration-property name="locale.cookie" <set-configuration-property name="locale.cookie"