Minor update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-map-widget@101446 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-11-04 16:30:54 +00:00 committed by Giancarlo Panichi
parent 21a606b5a2
commit 1e456a2985
3 changed files with 7 additions and 6 deletions

View File

@ -166,7 +166,10 @@ public class MapWidgetConfigCard extends WizardCard {
getWizardWindow().addCard(mapWidgetDetailCard);
getWizardWindow().nextCard();
} else {
MapWidgetGeometrySelectionCard mapGeometrySeslectionCard = new MapWidgetGeometrySelectionCard(
mapCreationSession);
getWizardWindow().addCard(mapGeometrySeslectionCard);
getWizardWindow().nextCard();
}
} catch (Exception e) {
Log.error("sayNextCard :" + e.getLocalizedMessage());

View File

@ -57,7 +57,7 @@ public class MapWidgetGeometrySelectionCard extends WizardCard {
.addSelectionHandler(new SelectionHandler<ColumnData>() {
public void onSelection(SelectionEvent<ColumnData> event) {
}
});
@ -80,7 +80,7 @@ public class MapWidgetGeometrySelectionCard extends WizardCard {
};
getWizardWindow().setNextButtonCommand(sayNextCard);
setEnableBackButton(false);
setEnableBackButton(true);
setEnableNextButton(true);
}
@ -92,7 +92,7 @@ public class MapWidgetGeometrySelectionCard extends WizardCard {
public void onHide(HideEvent event) {
getWizardWindow().setEnableNextButton(true);
getWizardWindow().setEnableBackButton(false);
getWizardWindow().setEnableBackButton(true);
}
};

View File

@ -21,9 +21,7 @@ public interface ColumnDataProperties extends
ValueProvider<ColumnData, String> label();
//ValueProvider<ColumnData, String> typeName();
//ValueProvider<ColumnData, String> typeCode();
}