enables/disables horizontal resizing of columns
webix.ui({
view:"datatable",
resizeColumn: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).
Back to top