From bb53a6110d874bd0e21bf80da91399f16160ead1 Mon Sep 17 00:00:00 2001 From: buczekp <buczekp> Date: Wed, 11 Aug 2010 08:48:11 +0000 Subject: [PATCH] [LMS-1676] by default hide all sample sections SVN: 17398 --- .../web/client/application/sample/GenericSampleViewer.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/plugin/generic/client/web/client/application/sample/GenericSampleViewer.java b/openbis/source/java/ch/systemsx/cisd/openbis/plugin/generic/client/web/client/application/sample/GenericSampleViewer.java index 27f0182c65c..d095dc73724 100644 --- a/openbis/source/java/ch/systemsx/cisd/openbis/plugin/generic/client/web/client/application/sample/GenericSampleViewer.java +++ b/openbis/source/java/ch/systemsx/cisd/openbis/plugin/generic/client/web/client/application/sample/GenericSampleViewer.java @@ -202,17 +202,17 @@ abstract public class GenericSampleViewer extends AbstractViewer<Sample> impleme containerSamplesSection = new ContainerSamplesSection(viewContext, generator); containerSamplesSection.setDisplayID(DisplayTypeIDGenerator.CONTAINER_SAMPLES_SECTION, displayIdSuffix); - container.addPanel(containerSamplesSection); + container.addPanel(containerSamplesSection, false); // Derived samples derivedSamplesSection = new DerivedSamplesSection(viewContext, generator); derivedSamplesSection.setDisplayID(DisplayTypeIDGenerator.DERIVED_SAMPLES_SECTION, displayIdSuffix); - container.addPanel(derivedSamplesSection); + container.addPanel(derivedSamplesSection, false); // Parent samples parentSamplesSection = new ParentSamplesSection(viewContext, generator); parentSamplesSection.setDisplayID(DisplayTypeIDGenerator.PARENT_SAMPLES_SECTION, displayIdSuffix); - container.addPanel(parentSamplesSection); + container.addPanel(parentSamplesSection, false); // Data Sets CheckBox showOnlyDirectlyConnectedCheckBox = createShowOnlyDirectlyConnectedCheckBox(); dataSetBrowser = -- GitLab