im having a datasource like this :
var data = [{
"name" : "jeff",
"house": {
"size" : "big",
"color" : "black"
}]
and i want the dxForm to be able to do :
formElement.dxForm({
formData: data,
items: [{
dataField : "name"
},{
dataField : "house.size"
}]
...
)};
i know this should work because it works with basicly all DevExtreme controls...
am i missing something ?
The DevExtreme Questions dont realy answer me, most people kinda figuered it out but on other frameworks and have other problems with it.