Skip to content
Snippets Groups Projects
Commit b4558eb9 authored by tpylak's avatar tpylak
Browse files

LMS-2027 allow to specify dataset type patterns in web-client.properties

SVN: 19907
parent ba0ac318
No related branches found
No related tags found
No related merge requests found
...@@ -19,6 +19,8 @@ package ch.systemsx.cisd.openbis.generic.client.web.client.application.framework ...@@ -19,6 +19,8 @@ package ch.systemsx.cisd.openbis.generic.client.web.client.application.framework
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashSet; import java.util.HashSet;
import java.util.List; import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set; import java.util.Set;
import com.extjs.gxt.ui.client.data.ModelData; import com.extjs.gxt.ui.client.data.ModelData;
...@@ -414,7 +416,16 @@ public class DisplaySettingsManager ...@@ -414,7 +416,16 @@ public class DisplaySettingsManager
*/ */
public final DetailViewConfiguration tryGetDetailViewSettings(String entityDetailViewID) public final DetailViewConfiguration tryGetDetailViewSettings(String entityDetailViewID)
{ {
return webClientConfiguration.getViews().get(entityDetailViewID); Map<String, DetailViewConfiguration> views = webClientConfiguration.getViews();
for (Entry<String, DetailViewConfiguration> entry : views.entrySet())
{
String keyPattern = entry.getKey();
if (entityDetailViewID.matches(keyPattern))
{
return entry.getValue();
}
}
return null;
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment