Skip to content
Snippets Groups Projects
Commit bd91bd97 authored by Benjamin Ulrich's avatar Benjamin Ulrich :speech_balloon:
Browse files

1061151 Fix Attribute set expended in contentprocess

parent 9020d433
No related branches found
No related tags found
No related merge requests found
......@@ -285,7 +285,6 @@
</entityFieldGroup>
<entityField>
<name>expanded</name>
<valueProcess>%aditoprj%/entity/Attribute_entity/entityfields/expanded/valueProcess.js</valueProcess>
</entityField>
<entityField>
<name>DROPDOWNFILTER</name>
......@@ -560,6 +559,9 @@
<isFilterable v="true" />
<isLookupFilter v="true" />
</jDitoRecordFieldMapping>
<jDitoRecordFieldMapping>
<name>expanded.value</name>
</jDitoRecordFieldMapping>
</recordFieldMappings>
</jDitoRecordContainer>
</recordContainers>
......
import("system.result");
result.object(false);
\ No newline at end of file
......@@ -175,7 +175,8 @@ function _buildAttributeTable (pAttributes, pUsages)
}
rowData[10] = _getFullName(rowData[1]); //parent full name
rowData[11] = _getFullName(rowData[0], displaySimpleName);
rowData[12] = "dummy"
rowData[12] = "dummy";
rowData[13] = false;
sortedArray[rows[i].index] = rowData;
}
......
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