Complex Data in DataTable -> 3 Levels

Hello,
i’m trying to parse a Json for a DataTable with 3 Levels

[
{
“id”: “5d838f699d807e1c38c901af”,
“subject”: “Subject 1”, (…),
“additionalFields”: {
“_5e7c99a7871da542b70526b6”: {
“label”: “Kennzeichen”,
“type”: “String”,
“value”: “”
},
“_5e81aaae08a87d14c09ff03e”: {
“label”: “Datum Abschluss”,
“type”: “Date”,
“value”: null
},
“_5e7c9ad2eee6b23bd3d65c8a”: {
“label”: “Fläche”,
“type”: “Integer”,
“value”: “123”
}
}
},
(…)
]

I Want to show the additionalFields._5e7c99a7871da542b70526b6.value in the columns. But with the property “map” Datatable stops loading/parsing.
Here is my colums definition

{ id: “addField1”, complexData: true, header: “Vertragsnummer”, map: “#additionalFields._5e7c99a7871da542b70526b6.value#”, adjust: true},

Hello @LaLaLand,
You can solve it through column template and template:function(obj){ return obj.additionalFields._5e7c99a7871da542b70526b6.value}:

columns:[
{ template:function(obj){ return obj.additionalFields._5e7c99a7871da542b70526b6.value}}
], 
data:[]

Please check the next snippet:
https://snippet.webix.com/rk7k1ao7