Hello. When i place an accordion into a nested datalayout, the controls do not show data. If I remove the accordion and replace with a form, then controls show data. Trying to find a way to show collapsable forms inside of a datalayout view. Thanks!
webix.ui({
view:"datalayout",
type:"space",
height: 600,
container: main,
rows:[
{ view:"text", name:"month" },
{
view: "datalayout",
name: "card",
rows:[
{ view:"accordion",
rows:[
{
header:"Card",
body: { view:"text", name:"count", label:"Count" }
}
]
}
]
}
],
data:[
{ month:"January",
card:[
{ income: 122342, count:12 },
{ income: 92342, count:8 },
{ income: 222342, count:20 }
]
},
{ month:"February", card:[{ income: 2342, count:2 }] }
]
});