mikesh
1
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 ?
mikesh
2
the value is present in the formdata :
userform.getValues().local.email (this works)
maksim
3
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
mikesh
4
This works perfectly. Thanks maksim