sets the width of the component
webix.ui ({
view:"window",
height:300,
width:300,
...
})
If you want to set flexible width, you need to set the -1 value for this property:
webix.ui({
view:"barcode",
width: -1
});
Back to top