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:
parent
220323ea34
commit
23939b5b4b
|
@ -78,7 +78,7 @@ public class TabResourcesSelectionPanel extends ContentPanel implements
|
||||||
protected static final ColumnConfig<TabResource, String> nameColumn = new ColumnConfig<TabResource, String>(
|
protected static final ColumnConfig<TabResource, String> nameColumn = new ColumnConfig<TabResource, String>(
|
||||||
properties.name(), 90, "Name");
|
properties.name(), 90, "Name");
|
||||||
protected static final ColumnConfig<TabResource, String> typeColumn = new ColumnConfig<TabResource, String>(
|
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>(
|
protected static final ColumnConfig<TabResource, String> agencyColumn = new ColumnConfig<TabResource, String>(
|
||||||
properties.agency(), 60, "Agency");
|
properties.agency(), 60, "Agency");
|
||||||
protected static final ColumnConfig<TabResource, String> ownerColumn = new ColumnConfig<TabResource, String>(
|
protected static final ColumnConfig<TabResource, String> ownerColumn = new ColumnConfig<TabResource, String>(
|
||||||
|
@ -250,8 +250,8 @@ public class TabResourcesSelectionPanel extends ContentPanel implements
|
||||||
&& item.getName().toLowerCase()
|
&& item.getName().toLowerCase()
|
||||||
.contains(searchTerm.toLowerCase()))
|
.contains(searchTerm.toLowerCase()))
|
||||||
return true;
|
return true;
|
||||||
if (item.getTabularResourceType() != null
|
if (item.getTableTypeName() != null
|
||||||
&& item.getTabularResourceType().toLowerCase()
|
&& item.getTableTypeName().toLowerCase()
|
||||||
.contains(searchTerm.toLowerCase()))
|
.contains(searchTerm.toLowerCase()))
|
||||||
return true;
|
return true;
|
||||||
if (item.getAgency() != null
|
if (item.getAgency() != null
|
||||||
|
|
Loading…
Reference in New Issue