From 6c080f2f21bcfe15e0219ffc2967f7de79581a16 Mon Sep 17 00:00:00 2001 From: juanf <juanf> Date: Wed, 16 Jul 2014 10:56:41 +0000 Subject: [PATCH] SSDM-516: Search Filter bugfix. SVN: 32085 --- .../webapps/newbrowser/html/js/views/SampleTable.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/SampleTable.js b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/SampleTable.js index fb7c53df46d..a39018c9c23 100644 --- a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/SampleTable.js +++ b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/SampleTable.js @@ -776,6 +776,18 @@ function SampleTable(serverFacade, sampleTableId, profile, sampleTypeCode, inspe } if(this.sampleTypeCode === "SEARCH") { + //Fix for not populated field, (not shown samples) + if(!this.samples[i]["PROPERTIES_JSON"]) { + var propertiesString = ""; + for(propertyKey in this.samples[i].properties) { + if(propertiesString.length > 0) { + propertiesString += " , "; + } + propertiesString += "<b>" + propertyKey + "</b> : " + this.samples[i].properties[propertyKey]; + } + this.samples[i]["PROPERTIES_JSON"] = propertiesString; + } + filterValueTokensPassed[j] = this.samples[i].sampleTypeCode.toLowerCase().indexOf(filterValueTokens[j]) !== -1 || this.samples[i].code.toLowerCase().indexOf(filterValueTokens[j]) !== -1 || this.samples[i]["PROPERTIES_JSON"].toLowerCase().indexOf(filterValueTokens[j]) !== -1; -- GitLab