Skip to content
Snippets Groups Projects
Commit 603effc9 authored by juanf's avatar juanf
Browse files

SSDM-2354 : Properties hidden from standard UI in entity creation form are still shown in ELN

SVN: 35295
parent a2c8b171
No related branches found
No related tags found
No related merge requests found
...@@ -413,6 +413,9 @@ function SampleFormView(sampleFormController, sampleFormModel) { ...@@ -413,6 +413,9 @@ function SampleFormView(sampleFormController, sampleFormModel) {
var propertyGroupPropertiesOnForm = 0; var propertyGroupPropertiesOnForm = 0;
for(var j = 0; j < propertyTypeGroup.propertyTypes.length; j++) { for(var j = 0; j < propertyTypeGroup.propertyTypes.length; j++) {
var propertyType = propertyTypeGroup.propertyTypes[j]; var propertyType = propertyTypeGroup.propertyTypes[j];
if(!propertyType.showInEditViews) { //Skip
continue;
}
if(propertyType.code === "XMLCOMMENTS") { if(propertyType.code === "XMLCOMMENTS") {
var $commentsContainer = $("<div>"); var $commentsContainer = $("<div>");
......
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