I’m playing around with Webix Grid and running into issues with resizing. I have it inside a container with width of 100% <div id='testA' style='width:100%'></div>. This does not work.
this is the config I use
webix.grid({
container:"testA",
id:"grid1",
autowidth: true,
columns:[
{ id:"rank", header:"", css:"rank", width:50},
{ id:"title", header:"Film title", fillspace:true},
{ id:"year", header:"Released", width:80 },
{ id:"votes", header:"Votes", width:100 }
],
data:grid_data,
scrollY:false
});
I want my grid to fit the whole screen. But the grid always keeps width the same.