enables/disables horizontal resizing of columns
webix.ui({
view:"datatable",
resizeColumn:true
});
// define the size of area where resizing can start
webix.ui({
view:"datatable",
resizeColumn:{size:6}
});
// allow resizing only in the header
webix.ui({
view:"datatable",
resizeColumn:{headerOnly:true}
});
By default, the parameter is disabled.
When enabled, the method doesn't actually resize the datatable. After page refresh, size returns to the initial one (provided that you haven't saved the table's state).
To change a column size, the user drag the resizing border. To spread the area, where the mouse pointer can grab and drag the border, define the size
in pixels (the example above).
Tables in Material and Mini skins have no borders by default. To restore the borders, make use of the following configuration options: