autowidth

adjusts Datatable size to its content horizontally

boolean autowidth;

Example

webix.ui({
    view:"datatable",
    autowidth:true,
    ...
});

Related samples

Details

If a Datatable features 5 columns with 100px width each, the resulting width will be 500px plus borders.

To adjust a component to the size of a parent container omit this property.

To stretch the Datatable columns within the container, you need to set fillspace to at least one of its columns.

columns:[
    { id:"title", header:"Title", fillspace:true }
]
See also
Back to top
If you have not checked yet, be sure to visit site of our main product Webix popular javascript framework and page of javascript tree grid product.