Fixed the behavior of the user interface

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-portlet@84368 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2013-10-25 16:01:00 +00:00
parent 03268f10a3
commit c5b2b5f3b2
1 changed files with 3 additions and 2 deletions

View File

@ -17,7 +17,6 @@ import org.gcube.portlets.user.td.client.event.UIStateEvent;
import org.gcube.portlets.user.td.client.event.UIStateType;
import org.gcube.portlets.user.td.client.resource.TabularDataResources;
import com.sencha.gxt.widget.core.client.toolbar.ToolBar;
import com.allen_sauer.gwt.log.client.Log;
import com.google.gwt.dom.client.Element;
import com.google.gwt.dom.client.NodeList;
@ -31,7 +30,7 @@ import com.sencha.gxt.widget.core.client.button.ButtonGroup;
import com.sencha.gxt.widget.core.client.button.TextButton;
import com.sencha.gxt.widget.core.client.event.SelectEvent;
import com.sencha.gxt.widget.core.client.event.SelectEvent.SelectHandler;
import com.sencha.gxt.widget.core.client.info.Info;
import com.sencha.gxt.widget.core.client.toolbar.ToolBar;
/**
*
@ -121,6 +120,7 @@ public class FileToolBar {
closeButton = new TextButton("Close",
TabularDataResources.INSTANCE.close());
propertiesButton.disable();
closeButton.setId("closeButton");
closeButton.setToolTip("Close table");
@ -136,6 +136,7 @@ public class FileToolBar {
propertiesButton = new TextButton("Properties",
TabularDataResources.INSTANCE.properties());
propertiesButton.disable();
propertiesButton.setId("propertiesButton");
propertiesButton.setToolTip("Show properties");