After update of chrome container not visible

Hello,
Today is chrome updated to version 80.0.3987.87
When my script is loaded, you can not see the records.
until “zoom in or out” is used in chrome. Then the records become visible.

My script was using standard version of dhtmlx5.2
==============start script=======

var formstruct=[{type:“settings”,inputWidth:140,labelWidth:150,labelAlign:“left”, position:“absolute”},
{type:“container”,name:“week”,label:“Kies Week”, labelLeft:10,labelTop:10,inputLeft:10,inputTop:40, inputWidth:900, inputHeight:120 }];
var contdata=[{id:“202003”,week:“202003”},{id:“202004”,week:“202004”},{id:“202005”,week:“202005”},{id:“202006”,week:“202006”}];

dhtmlx.image_path = “…/dhtmlx5.2/imgs/”;
dhtmlxEvent(window,“load”,function(){
var main_layout = new dhtmlXLayoutObject(document.body, ‘1C’);
a = main_layout.cells(‘a’);
newform= a.attachForm(formstruct);
week=new dhtmlXDataView(newform.getContainer(“week”));
week.define(“type”,{height:80,width:150,template: “#week#”});
week.parse(contdata,‘json’);
})

====================end script=======
I hope someone can solve the issue for me.
regards,

Laurens

As yo uare atrtaching your layout to the html body, please, make sure that your html body have the defined sizes.
Please, try to add the followinfg css on your page:

<style>
	html, body {
		width: 100%;
		height: 100%;
		margin: 0px;
		padding: 0px;
		overflow: hidden;
	}
</style>