diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SampleForm/widgets/LinksView.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SampleForm/widgets/LinksView.js index 815b9b24c93e03446bd7648eec7a11b15a7fbf31..8ae167dd439cdf4762fe51234222b2207af787d6 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SampleForm/widgets/LinksView.js +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/SampleForm/widgets/LinksView.js @@ -123,7 +123,15 @@ function LinksView(linksController, linksModel) { } } - var dataGrid = SampleDataGridUtil.getSampleDataGrid(containerCode, samplesOnGrid, null, linksView.getCustomOperationsForGrid(), allCustomAnnotations, "ANNOTATIONS", linksModel.isDisabled, false); + var postFix = null; + if(containerCode) { + postFix = "ANNOTATIONS"; + } else { + containerCode = mainController.currentView._sampleFormModel.sample.sampleTypeCode; + postFix = "ANNOTATIONS_ALL" + linksModel.title; + } + + var dataGrid = SampleDataGridUtil.getSampleDataGrid(containerCode, samplesOnGrid, null, linksView.getCustomOperationsForGrid(), allCustomAnnotations, postFix, linksModel.isDisabled, false); dataGrid.init($dataGridContainer); linksModel.writeState(sample, null, null, false); }