Updated TRId

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-open-widget@100937 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-10-23 16:31:17 +00:00 committed by Giancarlo Panichi
parent 220323ea34
commit 23939b5b4b
1 changed files with 3 additions and 3 deletions

View File

@ -78,7 +78,7 @@ public class TabResourcesSelectionPanel extends ContentPanel implements
protected static final ColumnConfig<TabResource, String> nameColumn = new ColumnConfig<TabResource, String>(
properties.name(), 90, "Name");
protected static final ColumnConfig<TabResource, String> typeColumn = new ColumnConfig<TabResource, String>(
properties.tabularResourceType(), 30, "Type");
properties.tabularResourceType(), 30, "Table Type");
protected static final ColumnConfig<TabResource, String> agencyColumn = new ColumnConfig<TabResource, String>(
properties.agency(), 60, "Agency");
protected static final ColumnConfig<TabResource, String> ownerColumn = new ColumnConfig<TabResource, String>(
@ -250,8 +250,8 @@ public class TabResourcesSelectionPanel extends ContentPanel implements
&& item.getName().toLowerCase()
.contains(searchTerm.toLowerCase()))
return true;
if (item.getTabularResourceType() != null
&& item.getTabularResourceType().toLowerCase()
if (item.getTableTypeName() != null
&& item.getTableTypeName().toLowerCase()
.contains(searchTerm.toLowerCase()))
return true;
if (item.getAgency() != null