Documentation

width

sets the width of the component

number width;

Example

webix.ui ({ 
         view:"window",
         height:300, 
         width:300,
     ...     
})

See also

Details

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