enables complex data parsing mode
var form = webix.ui({
view:"form", complexData:true, elements:[
{ view:"text", name:"user.firstname"},
{ view:"text", name:"user.lastname"}
]
});
form.setValues({
user:{
firstname:"Mark",
lastname:"Varuno"
}
})
This mode is needed for the getValues and setValues methods to correctly work with complex objects (objects that have other objects as properties).