Fixed highlight during select

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/widgets/workspace-explorer@128993 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2016-06-06 15:21:43 +00:00
parent 6111e6bc2b
commit 324dfb036d
2 changed files with 3 additions and 2 deletions

View File

@ -53,7 +53,6 @@ public class ItemsTable<T extends Item> extends AbstractItemsCellTable<T> implem
private TextColumn<T> owner;
public DateTimeFormat dtformat = DateTimeFormat.getFormat("dd MMM hh:mm aaa yyyy");
public ImageResource info = WorkspaceExplorerResources.ICONS.infoSquare();
// private Item selectedItem = null;
/**
* The Enum DISPLAY_FIELD.

View File

@ -10,6 +10,8 @@ import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.gcube.portlets.widgets.wsexplorer.client.resources.CellTableResources;
import com.github.gwtbootstrap.client.ui.CellTable;
import com.google.gwt.user.cellview.client.Column;
import com.google.gwt.user.cellview.client.ColumnSortEvent;
@ -61,7 +63,7 @@ public class SortedCellTable<T> extends CellTable<T> {
*/
public SortedCellTable() {
super();
super(1,CellTableResources.INSTANCE);
dataProvider = new ListDataProvider<T>();
dataProvider.addDataDisplay(this);