Skip to content
Snippets Groups Projects
Commit 0ebd10c4 authored by juanf's avatar juanf
Browse files

SSDM-3295 : Special Manager Properties columns should not be exported, this...

SSDM-3295 : Special Manager Properties columns should not be exported, this ones need special syntax to register/update data.

SVN: 35805
parent 018f8083
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ var ExperimentDataGridUtil = new function() {
var propertyColumnsToSort = [];
for (var idx = 0; idx < propertyCodes.length; idx++) {
var propertiesToSkip = ["NAME"];
var propertiesToSkip = ["NAME", "XMLCOMMENTS"];
var propertyCode = propertyCodes[idx];
if($.inArray(propertyCode, propertiesToSkip) !== -1) {
continue;
......
......@@ -96,7 +96,7 @@ var SampleDataGridUtil = new function() {
var propertyColumnsToSort = [];
for (var idx = 0; idx < propertyCodes.length; idx++) {
var propertiesToSkip = ["NAME"];
var propertiesToSkip = ["NAME", "XMLCOMMENTS", "ANNOTATIONS_STATE"];
var propertyCode = propertyCodes[idx];
if($.inArray(propertyCode, propertiesToSkip) !== -1) {
continue;
......
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