Skip to content
Snippets Groups Projects
Commit 0cf5c574 authored by izabel's avatar izabel
Browse files

[LMS-1689] open dataset view by default

SVN: 17848
parent 5d96d139
No related branches found
No related tags found
No related merge requests found
......@@ -177,6 +177,11 @@ abstract public class GenericDataSetViewer extends AbstractViewer<ExternalData>
{
container.addPanel(panel);
}
// data
final TabContent dataSection = new DataViewSection(viewContext, dataset);
dataSection.setDisplayID(DisplayTypeIDGenerator.DATA_SET_DATA_SECTION);
container.addPanel(dataSection);
// parents
final TabContent parentsSection = new DataSetParentsSection(viewContext, dataset);
parentsSection.setDisplayID(DisplayTypeIDGenerator.DATA_SET_PARENTS_SECTION);
......@@ -187,10 +192,6 @@ abstract public class GenericDataSetViewer extends AbstractViewer<ExternalData>
childrenSection.setDisplayID(DisplayTypeIDGenerator.DATA_SET_CHILDREN_SECTION);
container.addPanel(childrenSection);
// data
final TabContent dataSection = new DataViewSection(viewContext, dataset);
dataSection.setDisplayID(DisplayTypeIDGenerator.DATA_SET_DATA_SECTION);
container.addPanel(dataSection);
// container.layout();
moduleSectionManager.initialize(container, dataset);
return container;
......
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