Skip to content
Snippets Groups Projects
Commit 908d4bdf authored by Sebastian Listl's avatar Sebastian Listl :speech_balloon:
Browse files

Merge branch '1061151_FixAttributeSetExpandedInContentProcess' into '2021.0'

1061151 Fix Attribute set expended in contentprocess

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