Accordion in Datalayout.

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 }] }
	    ]
	});

Hello @mchenot,
Yes, I can confirm the issue. Thank you for the report!
As a workaround, for creating such structure, try to set name:"$value" property in the form to pass all the data.
Also the data components must be extended with get/setValue methods.
Please check the snippet: https://snippet.webix.com/490ugt4m