Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-table-widget@113510 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2015-03-09 09:15:54 +00:00 committed by Giancarlo Panichi
parent 8a37e6c9af
commit 373842e983
2 changed files with 6 additions and 6 deletions

View File

@ -37,8 +37,8 @@ public class DownscaleCSquare {
this.value = value;
}
public void getLabel(){
this.value.getLabel();
public String getLabel(){
return value.getLabel();
}

View File

@ -154,7 +154,7 @@ public class DownscaleCSquarePanel extends FramedPanel implements
addHandlersForComboDownscale(propsDownscale.label());
comboDownscale.setEmptyText("Select a column...");
comboDownscale.setEmptyText("Select a resolution...");
comboDownscale.setWidth(191);
comboDownscale.setTypeAhead(false);
comboDownscale.setEditable(false);
@ -163,10 +163,10 @@ public class DownscaleCSquarePanel extends FramedPanel implements
// Create
downscaleButton = new TextButton("Create");
downscaleButton.setIcon(ResourceBundle.INSTANCE.geometryPoint());
downscaleButton = new TextButton("Downscale");
downscaleButton.setIcon(ResourceBundle.INSTANCE.downscaleCSquare());
downscaleButton.setIconAlign(IconAlign.RIGHT);
downscaleButton.setTitle("Create Point");
downscaleButton.setTitle("Downscale C-Square");
downscaleButton.addSelectHandler(new SelectHandler() {