Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-extractcodelist-widget@97753 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-06-25 10:34:34 +00:00
parent 7381e683eb
commit 2c55e80154
2 changed files with 3 additions and 2 deletions

View File

@ -133,7 +133,8 @@ public class ExtractCodelistOperationInProgressCard extends WizardCard implement
@Override
public void operationComplete(final TRId trId) {
summary.setVisible(true);
forceLayout();
Command sayComplete = new Command() {
public void execute() {
try {

View File

@ -64,7 +64,7 @@ public class ExtractCodelistProgressBarUpdater implements ExtractCodelistProgres
int elab=new Float(elaborated*100).intValue();
progressBar.updateProgress(elaborated,elab+"% Progress...");
}
if (elaborated == 1) progressBar.updateProgress(1, "Completing...");
if (elaborated == 1) progressBar.updateProgress(1, "Completed");
}