Embedded JSON Object in a form

I want to put the value of an embedded object into textfield :

{view: “text”, name:“local.email”, label: “Login”},

but nothing happens. The form is bind to a dataview. In the dataview the local.email notation works in a template :

template:“ID : #_id#
User: #username#
Email: #local.email#”

Why this don’t work in form ?

the value is present in the formdata :

userform.getValues().local.email (this works)

Unfortunately the complex names in form are not supported

If this is a critical requirement - you can create a subform wrapper, and still use complex data objects in the form

http://webix.com/snippet/a2130a4c

This works perfectly. Thanks maksim :slight_smile: