Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-column-widget@91379 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-02-11 13:52:39 +00:00
parent 852ae20fca
commit 3c23ff9673
4 changed files with 13 additions and 12 deletions

View File

@ -107,6 +107,12 @@ public class ChangeColumnTypeProgressDialog extends Window implements ChangeColu
String failureDetails) {
ok.setVisible(true);
this.trId=null;
AlertMessageBox d = new AlertMessageBox("Error in Change Column Type", reason);
d.addHideHandler(new HideHandler() {
public void onHide(HideEvent event) {
}
});
d.show();
}
public void updateInvocation(){

View File

@ -106,12 +106,6 @@ public class ChangeColumnTypeProgressUpdater extends Timer {
details = "Error Change Column Type";
}
AlertMessageBox d = new AlertMessageBox("Error in Change Column Type", details);
d.addHideHandler(new HideHandler() {
public void onHide(HideEvent event) {
}
});
d.show();
fireOperationFailed(th, failure, details);
}

View File

@ -107,6 +107,12 @@ public class DeleteColumnProgressDialog extends Window implements DeleteColumnPr
String failureDetails) {
ok.setVisible(true);
this.trId=null;
AlertMessageBox d = new AlertMessageBox("Error in Delete Column", reason);
d.addHideHandler(new HideHandler() {
public void onHide(HideEvent event) {
}
});
d.show();
}
public void updateInvocation(){

View File

@ -106,12 +106,7 @@ public class DeleteColumnProgressUpdater extends Timer {
details = "Error Delete Column";
}
AlertMessageBox d = new AlertMessageBox("Error in Delete Column", details);
d.addHideHandler(new HideHandler() {
public void onHide(HideEvent event) {
}
});
d.show();
fireOperationFailed(th, failure, details);
}