diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/DataGrid/SampleDataGridUtil.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/DataGrid/SampleDataGridUtil.js
index 48e9966cfea949302a3c71a26722bf1c0933e4a7..df0a22b8605b85f845554bd76f2623c38253bbd7 100644
--- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/DataGrid/SampleDataGridUtil.js
+++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/DataGrid/SampleDataGridUtil.js
@@ -110,6 +110,19 @@ var SampleDataGridUtil = new function() {
 						if(data['$object'].children[cIdx].sampleTypeCode == "STORAGE_POSITION") {
 							storageData = data['$object'].children[cIdx].properties;
 							var storagePropertyGroup = profile.getStoragePropertyGroup();
+							
+							var codeProperty = storageData[storagePropertyGroup.nameProperty];
+							if(!codeProperty) {
+								codeProperty = "NoCode";
+							}
+							var rowProperty = storageData[storagePropertyGroup.rowProperty];
+							if(!rowProperty) {
+								rowProperty = "NoRow";
+							}
+							var colProperty = storageData[storagePropertyGroup.columnProperty];
+							if(!colProperty) {
+								colProperty = "NoCol";
+							}
 							var boxProperty = storageData[storagePropertyGroup.boxProperty];
 							if(!boxProperty) {
 								boxProperty = "NoBox";
@@ -118,7 +131,7 @@ var SampleDataGridUtil = new function() {
 							if(!positionProperty) {
 								positionProperty = "NoPos";
 							}
-							var displayName = boxProperty + " : " + positionProperty;
+							var displayName = codeProperty + " [ " + rowProperty + " , " + colProperty + " ] " + boxProperty + " : " + positionProperty;
 							if(!isFirst) {
 								storage.append(",<br>");
 							}