Fixed the behavior of the user interface

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-sdmx-import-widget@84369 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2013-10-25 16:01:31 +00:00 committed by Giancarlo Panichi
parent 96d7251995
commit 4d890c191a
1 changed files with 11 additions and 1 deletions

View File

@ -124,9 +124,19 @@ public class WizardWindow extends Window {
backButton.addSelectHandler(selectionHandler);
nextButton.addSelectHandler(selectionHandler);
closeBtnHandle();
setWidget(container);
}
protected void closeBtnHandle() {
closeBtn.addSelectHandler(new SelectHandler() {
@Override
public void onSelect(SelectEvent event) {
fireAborted();
}
});
}
/**